max_stars_repo_path
stringlengths
4
261
max_stars_repo_name
stringlengths
6
106
max_stars_count
int64
0
38.8k
id
stringlengths
1
6
text
stringlengths
7
1.05M
alloy4fun_models/trainstlt/models/16/Qk5nXLMXMZrAveizD.als
Kaixi26/org.alloytools.alloy
0
2387
<reponame>Kaixi26/org.alloytools.alloy open main pred idQk5nXLMXMZrAveizD_prop17 { always( one pos => one Train.pos:>Exit ) } pred __repair { idQk5nXLMXMZrAveizD_prop17 } check __repair { idQk5nXLMXMZrAveizD_prop17 <=> prop17o }
ada/gui/agar-init_gui.adb
auzkok/libagar
286
12721
<gh_stars>100-1000 ------------------------------------------------------------------------------ -- AGAR GUI LIBRARY -- -- A G A R . I N I T _ G U I -- -- B o d y -- -- -- -- Copyright (c) 2018-2019 <NAME> (<EMAIL>) -- -- -- -- Permission to use, copy, modify, and/or distribute this software for any -- -- purpose with or without fee is hereby granted, provided that the above -- -- copyright notice and this permission notice appear in all copies. -- -- -- -- THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES -- -- WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF -- -- MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR -- -- ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES -- -- WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN -- -- ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF -- -- OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. -- ------------------------------------------------------------------------------ package body Agar.Init_GUI is function Init_Graphics (Driver : in String) return Boolean is Ch_Driver : aliased C.char_array := C.To_C(Driver); begin return 0 = AG_InitGraphics (Driver => CS.To_Chars_Ptr(Ch_Driver'Unchecked_Access)); end; function Init_GUI return Boolean is begin return 0 = AG_InitGUI (Flags => 0); end; end Agar.Init_GUI;
test/data/source_files/string.applescript
darricktheprogrammer/ASDoc
0
471
<reponame>darricktheprogrammer/ASDoc<filename>test/data/source_files/string.applescript<gh_stars>0 (*! * @header * Library for working with and manipulating text * * <NAME> http://www.exitcodeone.com *) property version : "1.0" (*! Ascii lowercase letters a-z *) property ASCII_LOWERCASE : "abcdefghijklmnopqrstuvwxyz" (*! Ascii uppercase letters A-Z *) property ASCII_UPPERCASE : "ABCDEFGHIJKLMNOPQRSTUVWXYZ" (*! Numbers 0-9 *) property DIGITS : "0123456789" (*! Combination of ASCII_LOWERCASE and ASCII_UPPERCASE *) property ASCII_LETTERS : ASCII_LOWERCASE & ASCII_UPPERCASE (*! Punctuation and special characters *) property SPECIAL_CHARS : "!\"#$%&'()*+,-./:;<=>?@[\\]^_`{|}~" (*! Whitespace characters tab, space, return, and linefeed *) property WHITESPACE : space & tab & return & linefeed (*! * Split a string into a list on the delimiter. * * @param str (String): The string to split. * @param delimiter (String): The delimiter on which to split the string. * @return (List) *) on split(str, delimiter) if str is "" then return {str} end if set AppleScript's text item delimiters to delimiter set theList to text items of str set AppleScript's text item delimiters to "" return theList end split (*! * Convert a list to string, inserting a delimiter between each list item. * * @param theList (List): The list to convert. * @param delimiter (String): The text to insert between list items. * @return (String) *) on join(theList, delimiter) set AppleScript's text item delimiters to delimiter set theText to theList as text set AppleScript's text item delimiters to "" return theText end join (*! * Search for text and replace it. * * @param str (String): The original string. * @param oldText (String): The text to replace. * @param newText (String): The replacement text. * @return (String) *) on search_and_replace(str, oldText, newText) set AppleScript's text item delimiters to oldText set myList to text items of str set AppleScript's text item delimiters to newText set str to myList as string set AppleScript's text item delimiters to "" return str end search_and_replace (*! * Convert a string to all lowercase, maintaining special characters. * * @param str (String): The string in which to convert the case. * @return (String) *) on to_lower(str) repeat with i from 1 to (count ASCII_UPPERCASE) set str to my search_and_replace(str, item i of ASCII_UPPERCASE, item i of ASCII_LOWERCASE) end repeat return str end to_lower (*! * Convert a string to all uppercase, maintaining special characters. * * @param str (String): The string in which to convert the case. * @return (String) *) on to_upper(str) repeat with i from 1 to (count ASCII_LOWERCASE) set str to my search_and_replace(str, item i of ASCII_LOWERCASE, item i of ASCII_UPPERCASE) end repeat return str end to_upper (*! * Convert text to title case. * * Does not take punctuation into account. Only words preceded by a space * will be capitalized. * * The following words will always be converted to lowercase and not capitalized: * a, an, in, the, and, but, for, or, nor, to. * * @param str (String): The text to convert. * @return (String) *) on title_case(str) set stopwords to {"a", "an", "in", "the", "and", "but", "for", "or", "nor", "to"} set allWords to my split(str, space) set fixedWords to {} repeat with i from 1 to (count allWords) set currWord to item i of allWords set thisWord to "" repeat with j from 1 to (count currWord) if j = 1 and currWord is not in stopwords then set thisWord to thisWord & my to_upper(item j of currWord) else set thisWord to thisWord & my to_lower(item j of currWord) end if end repeat set end of fixedWords to thisWord end repeat return my join(fixedWords, space) end title_case (*! * Convert text to contain capital letters at beginning of each sentence. * * The end of a sentences is considered to be one of ".!?" * followed by one or two spaces. * * @param str (String): The string to convert. * @return (String) *) on sentence_case(str) if str is "" then return str end if set punctbreaks to {". ", ". ", "! ", "! ", "? ", "? "} repeat with i from 1 to (count punctbreaks) set sentences to my split(str, item i of punctbreaks) repeat with j from 1 to (count sentences) set sentence to item j of sentences set item j of sentences to (to_upper(text 1 of sentence) & rest of text items of sentence) as string end repeat set str to my join(sentences, item i of punctbreaks) end repeat return str end sentence_case (*! * Alternative method of converting case without directly calling the other routines. * * @param str (String): The text to convert. * @param tCase (String): The desired case ("uppercase", "lowercase", "titlecase", or "sentencecase") * @return (String) *) on convert_case(str, tCase) if tCase is "uppercase" then return my to_upper(str) else if tCase is "lowercase" then return my to_lower(str) else if tCase is "titlecase" then return my title_case(str) else if tCase is "sentencecase" then return my sentence_case(str) else return str end if end convert_case (*! * Remove whitespace from beginning and end of string. * * @param str (String): The string to trim. * @return (String) *) on trim(str) if str is "" then return str end if repeat with i from 1 to (count str) if item i of str is not in WHITESPACE then set strstart to i exit repeat end if end repeat repeat with i from (count str) to 1 by -1 if item i of str is not in WHITESPACE then set strend to i exit repeat end if end repeat return text strstart thru strend of str end trim (*! * Pad a string with spaces on the left until it reaches the desired width. * * @param str (String): The string to pad. * @param padwidth (Integer): The desired width of the string. * @return (String) *) on pad_left(str, padwidth) return pad_left_with_char(" ", str, padwidth) end pad_left (*! * Pad a string with spaces on the right until it reaches the desired width. * * @param str (String): The string to pad. * @param padwidth (Integer): The desired width of the string. * @return (String) *) on pad_right(str, padwidth) return pad_right_with_char(" ", str, padwidth) end pad_right (*! * Pad a string with the given on the left until it reaches the desired width. * * @param char (Char): A single character to be used for padding. * @param str (String): The string to pad. * @param padwidth (Integer): The desired width of the string. * @return (String) *) on pad_left_with_char(char, str, padwidth) if (count char) > 1 then error "Cannot pad with character " & quoted form of char & ". Can only pad with a single character." number 701 end if set padcount to padwidth - (count str) repeat with i from 1 to padcount set str to char & str end repeat return str end pad_left_with_char (*! * Pad a string with the given on the right until it reaches the desired width. * * @param char (Char): A single character to be used for padding. * @param str (String): The string to pad. * @param padwidth (Integer): The desired width of the string. * @return (String) *) on pad_right_with_char(char, str, padwidth) if (count char) > 1 then error "Cannot pad with character " & quoted form of char & ". Can only pad with a single character." number 701 end if set padcount to padwidth - (count str) repeat with i from 1 to padcount set str to str & char end repeat return str end pad_right_with_char (*! * Simplistic, python-style string formatter. * * This routine is based on python's `string.format()` method, but is a lot simpler. * It will replace each instance of curly braces (`{}`) in the first string argument * with the corresponding string from the list given as the second argument. This * routine does not support python's more advanced string replacement features, such * as the mini-language, or positional/keyworded substitutions. * * As a convenience, if there is only one replacement to be made, the second argument * can simply be a string. It does not have to be a list. * * To escape a set of braces, simply put an asterisk in between them. This will * tell `format()` to ignore them, and they will be printed out as a standard set of braces. * * ``` * format("This is a {} string.", "test") --> This is a test string. * format("This is a {} string.", {"test"}) --> This is a test string. * format("This is a {} {}", {"test", "string"}) --> This is a test string. * format("This is a {} string.", {"test"}) --> This is a test string. * format("These are {}: {*}.", {"curly braces"}) --> These are curly braces: {}. * ``` * * @param str (String): The original string formatting template. * @param args (String, List) One or more strings used to replace `{}` * in the string template. * @return (String) *) on format(str, args) if class of args is not list then set args to {args} end if set parts to split(str, "{}") -- Make sure the amount of args matches the amount of braces set {braceCount, argcount} to {(count parts) - 1, count args} if braceCount is not equal to argcount then set errmsg to format("Expected {} arguments, but received {}.", {braceCount, argcount}) error errmsg number 702 end if set formatted to {} set partLen to (count parts) repeat with i from 1 to partLen set end of formatted to item i of parts if i < partLen then set end of formatted to (item i of args as string) end if end repeat return search_and_replace(formatted as string, "{*}", "{}") end format
Transynther/x86/_processed/US/_zr_/i7-7700_9_0xca_notsx.log_2_858.asm
ljhsiun2/medusa
9
5096
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r13 push %rax push %rbp push %rcx push %rdx // Store lea addresses_normal+0x1ef42, %rax clflush (%rax) nop nop nop nop xor %rdx, %rdx mov $0x5152535455565758, %r10 movq %r10, %xmm2 vmovups %ymm2, (%rax) nop nop nop nop add %r13, %r13 // Faulty Load lea addresses_US+0x15d71, %rcx nop nop nop nop and $20081, %rbp movups (%rcx), %xmm4 vpextrq $1, %xmm4, %r12 lea oracles, %rcx and $0xff, %r12 shlq $12, %r12 mov (%rcx,%r12,1), %r12 pop %rdx pop %rcx pop %rbp pop %rax pop %r13 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'AVXalign': False, 'size': 4, 'congruent': 0, 'same': False, 'type': 'addresses_US'}, 'OP': 'LOAD'} {'dst': {'NT': False, 'AVXalign': False, 'size': 32, 'congruent': 0, 'same': False, 'type': 'addresses_normal'}, 'OP': 'STOR'} [Faulty Load] {'src': {'NT': False, 'AVXalign': False, 'size': 16, 'congruent': 0, 'same': True, 'type': 'addresses_US'}, 'OP': 'LOAD'} <gen_prepare_buffer> {'00': 2} 00 00 */
tpantlr2-code/code/extras/C.g4
cgonul/antlr-poc
10
1135
grammar C; file: (func | var)+ ; func: type ID '(' ')' '{' '}' ; var : 'extern'? type ID ';' ; type: 'int' | 'void' ; ID : [a-zA-Z]+ ; INT : [0-9]+ ; WS : [ \t\n\r]+ -> channel(HIDDEN) ; SL_COMMENT : '//' .*? '\r'? '\n' -> channel(HIDDEN) ;
Transynther/x86/_processed/NC/_zr_/i7-7700_9_0x48_notsx.log_21829_378.asm
ljhsiun2/medusa
9
101553
.global s_prepare_buffers s_prepare_buffers: push %r13 push %r14 push %r15 push %rbx push %rcx push %rdi push %rdx push %rsi lea addresses_UC_ht+0xa3ee, %r13 nop nop nop nop sub %r15, %r15 mov (%r13), %rsi nop nop and %r15, %r15 lea addresses_normal_ht+0x1c6ba, %rdx nop nop nop cmp %r14, %r14 movw $0x6162, (%rdx) nop inc %rsi lea addresses_WC_ht+0x15fee, %rsi lea addresses_UC_ht+0xcb8b, %rdi clflush (%rsi) nop nop sub $4767, %rbx mov $65, %rcx rep movsw and %rsi, %rsi lea addresses_UC_ht+0x10fee, %rdi nop sub %r15, %r15 movups (%rdi), %xmm7 vpextrq $0, %xmm7, %rcx nop nop nop xor %r15, %r15 lea addresses_D_ht+0x6fee, %rcx clflush (%rcx) nop nop nop nop and %r15, %r15 mov $0x6162636465666768, %rdi movq %rdi, %xmm2 vmovups %ymm2, (%rcx) nop nop nop nop cmp $53283, %rdi lea addresses_D_ht+0xedee, %rsi lea addresses_UC_ht+0x129ee, %rdi and %rbx, %rbx mov $34, %rcx rep movsq nop nop nop nop nop add %rbx, %rbx lea addresses_WC_ht+0x578d, %rcx nop nop nop nop sub %rdi, %rdi movb $0x61, (%rcx) add $61448, %rcx lea addresses_WC_ht+0xa7ee, %rsi lea addresses_D_ht+0x1072e, %rdi nop sub %r15, %r15 mov $60, %rcx rep movsq nop nop nop nop inc %rcx lea addresses_WC_ht+0x36e, %rdi nop nop nop nop cmp %rsi, %rsi movl $0x61626364, (%rdi) nop nop dec %rdx lea addresses_WT_ht+0x160ca, %r15 nop nop nop nop nop sub %r14, %r14 movl $0x61626364, (%r15) nop nop nop cmp %rdi, %rdi lea addresses_A_ht+0xceea, %rsi lea addresses_D_ht+0xbb6e, %rdi nop nop nop nop nop dec %r15 mov $74, %rcx rep movsw nop nop cmp $25521, %rdx lea addresses_normal_ht+0x18fee, %rbx clflush (%rbx) nop nop nop cmp %rsi, %rsi movw $0x6162, (%rbx) nop nop nop nop nop add %r15, %r15 pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %r15 pop %r14 pop %r13 ret .global s_faulty_load s_faulty_load: push %r13 push %r15 push %rax push %rdx push %rsi // Faulty Load mov $0x4ccf1700000007ee, %rax nop and $20525, %r13 mov (%rax), %r15d lea oracles, %rsi and $0xff, %r15 shlq $12, %r15 mov (%rsi,%r15,1), %r15 pop %rsi pop %rdx pop %rax pop %r15 pop %r13 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'same': False, 'NT': True, 'AVXalign': False, 'size': 8, 'type': 'addresses_NC', 'congruent': 0}} [Faulty Load] {'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_NC', 'congruent': 0}} <gen_prepare_buffer> {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 8, 'type': 'addresses_UC_ht', 'congruent': 9}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_normal_ht', 'congruent': 2}, 'OP': 'STOR'} {'dst': {'same': False, 'congruent': 0, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 10, 'type': 'addresses_WC_ht'}} {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_UC_ht', 'congruent': 11}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_D_ht', 'congruent': 7}, 'OP': 'STOR'} {'dst': {'same': False, 'congruent': 9, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 9, 'type': 'addresses_D_ht'}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 1, 'type': 'addresses_WC_ht', 'congruent': 0}, 'OP': 'STOR'} {'dst': {'same': False, 'congruent': 4, 'type': 'addresses_D_ht'}, 'OP': 'REPM', 'src': {'same': True, 'congruent': 9, 'type': 'addresses_WC_ht'}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_WC_ht', 'congruent': 5}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_WT_ht', 'congruent': 2}, 'OP': 'STOR'} {'dst': {'same': False, 'congruent': 7, 'type': 'addresses_D_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 1, 'type': 'addresses_A_ht'}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_normal_ht', 'congruent': 9}, 'OP': 'STOR'} {'00': 21829} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
04-cubical-type-theory/material/Part2.agda
bafain/EPIT-2020
1
10440
<reponame>bafain/EPIT-2020 {- Part 2: Transport and composition • Cubical transport • Subst as a special case of cubical transport • Path induction from subst • Homogeneous composition (hcomp) • Binary composition of paths as special case of hcomp -} {-# OPTIONS --cubical #-} module Part2 where open import Part1 -- While path types are great for reasoning about equality they don't -- let us transport along paths between types or even compose paths. -- Furthermore, as paths are not inductively defined we don't -- automatically get an induction principle for them. In order to -- remedy this Cubical Agda also has a built-in (generalized) -- transport operation and homogeneous composition operation from -- which the induction principle (and much more!) is derivable. -- The basic operation is called transp and we will soon explain it, -- but let's first focus on the special case of cubical transport: transport : A ≡ B → A → B transport p a = transp (λ i → p i) i0 a -- This is a more primitive operation than "transport" in HoTT as it -- only lets us turn a path into a function. However, the transport of -- HoTT can easily be proved from cubical transport and in order to -- avoid a name clash we call it "subst": subst : (B : A → Type ℓ') {x y : A} (p : x ≡ y) → B x → B y subst B p pa = transport (λ i → B (p i)) pa -- The transp operation is a generalized transport in the sense that -- it lets us specify where the transport is the identity function. -- The general type of transp is: -- -- transp : (A : I → Type ℓ) (r : I) (a : A i0) → A i1 -- -- There is an additional side condition which to be satisfied for -- Cubical Agda to typecheck "transp A r a". This is that A has to be -- "constant" on r. This means that A should be a constant function -- whenever r = i1 is satisfied. This side condition is vacuously true -- when r = i0, so there is nothing to check when writing transport as -- above. However, when r is equal to i1 the transp function will -- compute as the identity function. -- -- transp A i1 a = a -- -- Having this extra generality is useful for quite technical reasons, -- for instance we can easily relate a with its transport over p: transportFill : (p : A ≡ B) (a : A) → PathP (λ i → p i) a (transport p a) transportFill p a i = transp (λ j → p (i ∧ j)) (~ i) a -- Another result that follows easily from transp is that transporting -- in a constant family is the identity function (up to a path). Note -- that this is *not* proved by refl. This is maybe not surprising as -- transport is not defined by pattern-matching on p. transportRefl : (x : A) → transport refl x ≡ x transportRefl {A = A} x i = transp (λ _ → A) i x -- Having transp lets us prove many more useful lemmas like this. For -- details see: -- -- Cubical.Foundations.Transport -- -- For experts: the file -- -- Cubical.Foundations.CartesianKanOps -- -- contains a reformulation of these operations which might be useful -- for people familiar with "cartesian" cubical type theory. -- We can also define the J eliminator (aka path induction) J : {x : A} (P : (z : A) → x ≡ z → Type ℓ'') (d : P x refl) {y : A} (p : x ≡ y) → P y p J {x = x} P d p = subst (λ X → P (fst X) (snd X)) (isContrSingl x .snd (_ , p)) d -- Unfolded version: -- -- transport (λ i → P (p i) (λ j → p (i ∧ j))) d -- So J is provable, but it doesn't satisfy the computation rule of -- refl definitionally as _≡_ is not inductively defined. See -- exercises for how to prove it. Not having this hold definitionally -- is almost never a problem in practice as the cubical primitives -- satisfy many new definitional equalities (c.f. cong). -- As we now have J we can define path concatenation and many more -- things, however this is not the way to do things in Cubical -- Agda. One of the key features of cubical type theory is that the -- transp primitive reduces differently for different types formers -- (see CCHM or the Cubical Agda paper for details). For paths it -- reduces to another primitive operation called hcomp. This primitive -- is much better suited for concatenating paths than J as it is much -- more general. In particular, it lets us compose multiple higher -- dimensional cubes directly. We will explain it by example. -- In order to compose two paths we write: compPath : {x y z : A} → x ≡ y → y ≡ z → x ≡ z compPath {x = x} p q i = hcomp (λ j → λ { (i = i0) → x ; (i = i1) → q j }) (p i) -- This is best understood with the following drawing: -- -- x z -- ^ ^ -- ¦ ¦ -- x ¦ ¦ q j -- ¦ ¦ -- x ----------> y -- p i -- -- In the drawing the direction i goes left-to-right and j goes -- bottom-to-top. As we are constructing a path from x to z along i we -- have i : I in the context already and we put p i as bottom. The -- direction j that we are doing the composition in is abstracted in -- the first argument to hcomp. -- These are related to lifting conditions for Kan cubical sets. -- A more natural form of composition of paths in Cubical Agda is -- ternary composition: -- -- x w -- ^ ^ -- ¦ ¦ -- p (~ j) ¦ ¦ r j -- ¦ ¦ -- y ----------> z -- q i -- -- This is written p ∙∙ q ∙∙ r in the agda/cubical library (∙ is "\.") -- and implemented by: _∙∙_∙∙_ : {x y z w : A} → x ≡ y → y ≡ z → z ≡ w → x ≡ w (p ∙∙ q ∙∙ r) i = hcomp (λ j → λ { (i = i0) → p (~ j) ; (i = i1) → r j }) (q i) -- Note that we can easily define mixfix operators with many arguments -- in Agda. -- Using this we can define compPath much slicker: _∙_ : {x y z : A} → x ≡ y → y ≡ z → x ≡ z p ∙ q = refl ∙∙ p ∙∙ q -- To prove algebraic properties of this operation (in particular that -- it's a groupoid) we need to talk about filling using the hfill -- operation. There is no time for this today, but the interested -- reader can consult -- -- Cubical.Foundations.GroupoidLaws -- In case there is time I might show the following briefly: doubleCompPath-filler : {x y z w : A} (p : x ≡ y) (q : y ≡ z) (r : z ≡ w) → PathP (λ j → p (~ j) ≡ r j) q (p ∙∙ q ∙∙ r) doubleCompPath-filler p q r j i = hfill (λ j → λ { (i = i0) → p (~ j) ; (i = i1) → r j }) (inS (q i)) j compPath-filler : {x y z : A} (p : x ≡ y) (q : y ≡ z) → PathP (λ j → x ≡ q j) p (p ∙ q) compPath-filler p q = doubleCompPath-filler refl p q rUnit : {x y : A} (p : x ≡ y) → p ≡ p ∙ refl rUnit p i j = compPath-filler p refl i j -- Having hcomp as a primitive operation lets us prove many things -- very directly. For instance, we can prove that any proposition is -- also a set using a higher dimensional hcomp. isProp→isSet : isProp A → isSet A isProp→isSet h a b p q j i = hcomp (λ k → λ { (i = i0) → h a a k ; (i = i1) → h a b k ; (j = i0) → h a (p i) k ; (j = i1) → h a (q i) k }) a -- Geometric picture: start with a square with a everywhere as base, -- then change its sides so that they connect p with q over refl_a and -- refl_b. isPropIsProp : isProp (isProp A) isPropIsProp f g i a b = isProp→isSet f a b (f a b) (g a b) i isPropIsSet : isProp (isSet A) isPropIsSet h1 h2 i x y = isPropIsProp (h1 x y) (h2 x y) i -- In order to understand what the second argument to hcomp is one -- should read about partial elements. We refer the interested reader -- to the Cubical Agda documentation: -- -- https://agda.readthedocs.io/en/v2.6.1.3/language/cubical.html#partial-elements -- -- However, for beginners one doesn't need to write hcomp to prove -- thing as the library provide many basic lemmas. In particular, the -- library provides equational reasoning combinators as in regular -- Agda which let us write things like: -- -- inverseUniqueness : (r : R) → isProp (Σ[ r' ∈ R ] r · r' ≡ 1r) -- inverseUniqueness r (r' , rr'≡1) (r'' , rr''≡1) = Σ≡Prop (λ _ → is-set _ _) path -- where -- path : r' ≡ r'' -- path = r' ≡⟨ sym (·Rid _) ⟩ -- r' · 1r ≡⟨ cong (r' ·_) (sym rr''≡1) ⟩ -- r' · (r · r'') ≡⟨ ·Assoc _ _ _ ⟩ -- (r' · r) · r'' ≡⟨ cong (_· r'') (·-comm _ _) ⟩ -- (r · r') · r'' ≡⟨ cong (_· r'') rr'≡1 ⟩ -- 1r · r'' ≡⟨ ·Lid _ ⟩ -- r'' ∎
S5/AO/Assembler/math_operations/nombre-de-diviseur.asm
Momellouky/S5
1
22145
; multi-segment executable file template. data segment N dw 10 ends stack segment dw 128 dup(0) ends code segment start: ; set segment registers: mov ax, data mov ds, ax mov es, ax mov ax, N mov dx, 0 mov bx, N mov cx, 0 ; nbr diviseur while: cmp bx, 0 je fin mov dx, 0 mov ax, N div bx cmp dx, 0 je estDiviseur dec bx jmp while estDiviseur: inc cx dec bx jmp while fin: mov dx, cx mov ah, 2h int 21h mov ax, 4c00h ; exit to operating system. int 21h ends end start ; set entry point and stop the assembler.
llvm-gcc-4.2-2.9/gcc/ada/exp_dbug.ads
vidkidz/crossbridge
1
2027
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ D B U G -- -- -- -- S p e c -- -- -- -- Copyright (C) 1996-2005, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 2, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING. If not, write -- -- to the Free Software Foundation, 51 Franklin Street, Fifth Floor, -- -- Boston, MA 02110-1301, USA. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Expand routines for generation of special declarations used by the -- debugger. In accordance with the Dwarf 2.2 specification, certain -- type names are encoded to provide information to the debugger. with Types; use Types; with Uintp; use Uintp; package Exp_Dbug is ----------------------------------------------------- -- Encoding and Qualification of Names of Entities -- ----------------------------------------------------- -- This section describes how the names of entities are encoded in -- the generated debugging information. -- An entity in Ada has a name of the form X.Y.Z ... E where X,Y,Z -- are the enclosing scopes (not including Standard at the start). -- The encoding of the name follows this basic qualified naming scheme, -- where the encoding of individual entity names is as described in -- Namet (i.e. in particular names present in the original source are -- folded to all lower case, with upper half and wide characters encoded -- as described in Namet). Upper case letters are used only for entities -- generated by the compiler. -- There are two cases, global entities, and local entities. In more -- formal terms, local entities are those which have a dynamic enclosing -- scope, and global entities are at the library level, except that we -- always consider procedures to be global entities, even if they are -- nested (that's because at the debugger level a procedure name refers -- to the code, and the code is indeed a global entity, including the -- case of nested procedures.) In addition, we also consider all types -- to be global entities, even if they are defined within a procedure. -- The reason for treating all type names as global entities is that -- a number of our type encodings work by having related type names, -- and we need the full qualification to keep this unique. -- For global entities, the encoded name includes all components of the -- fully expanded name (but omitting Standard at the start). For example, -- if a library level child package P.Q has an embedded package R, and -- there is an entity in this embdded package whose name is S, the encoded -- name will include the components p.q.r.s. -- For local entities, the encoded name only includes the components -- up to the enclosing dynamic scope (other than a block). At run time, -- such a dynamic scope is a subprogram, and the debugging formats know -- about local variables of procedures, so it is not necessary to have -- full qualification for such entities. In particular this means that -- direct local variables of a procedure are not qualified. -- As an example of the local name convention, consider a procedure V.W -- with a local variable X, and a nested block Y containing an entity -- Z. The fully qualified names of the entities X and Z are: -- V.W.X -- V.W.Y.Z -- but since V.W is a subprogram, the encoded names will end up -- encoding only -- x -- y.z -- The separating dots are translated into double underscores ----------------------------- -- Handling of Overloading -- ----------------------------- -- The above scheme is incomplete with respect to overloaded -- subprograms, since overloading can legitimately result in a -- case of two entities with exactly the same fully qualified names. -- To distinguish between entries in a set of overloaded subprograms, -- the encoded names are serialized by adding the suffix: -- __nn (two underscores) -- where nn is a serial number (2 for the second overloaded function, -- 3 for the third, etc.). A suffix of __1 is always omitted (i.e. no -- suffix implies the first instance). -- These names are prefixed by the normal full qualification. So -- for example, the third instance of the subprogram qrs in package -- yz would have the name: -- yz__qrs__3 -- A more subtle case arises with entities declared within overloaded -- subprograms. If we have two overloaded subprograms, and both declare -- an entity xyz, then the fully expanded name of the two xyz's is the -- same. To distinguish these, we add the same __n suffix at the end of -- the inner entity names. -- In more complex cases, we can have multiple levels of overloading, -- and we must make sure to distinguish which final declarative region -- we are talking about. For this purpose, we use a more complex suffix -- which has the form: -- __nn_nn_nn ... -- where the nn values are the homonym numbers as needed for any of -- the qualifying entities, separated by a single underscore. If all -- the nn values are 1, the suffix is omitted, Otherwise the suffix -- is present (including any values of 1). The following example -- shows how this suffixing works. -- package body Yz is -- procedure Qrs is -- Name is yz__qrs -- procedure Tuv is ... end; -- Name is yz__qrs__tuv -- begin ... end Qrs; -- procedure Qrs (X: Int) is -- Name is yz__qrs__2 -- procedure Tuv is ... end; -- Name is yz__qrs__tuv__2_1 -- procedure Tuv (X: Int) is -- Name is yz__qrs__tuv__2_2 -- begin ... end Tuv; -- procedure Tuv (X: Float) is -- Name is yz__qrs__tuv__2_3 -- type m is new float; -- Name is yz__qrs__tuv__m__2_3 -- begin ... end Tuv; -- begin ... end Qrs; -- end Yz; -------------------- -- Operator Names -- -------------------- -- The above rules applied to operator names would result in names -- with quotation marks, which are not typically allowed by assemblers -- and linkers, and even if allowed would be odd and hard to deal with. -- To avoid this problem, operator names are encoded as follows: -- Oabs abs -- Oand and -- Omod mod -- Onot not -- Oor or -- Orem rem -- Oxor xor -- Oeq = -- One /= -- Olt < -- Ole <= -- Ogt > -- Oge >= -- Oadd + -- Osubtract - -- Oconcat & -- Omultiply * -- Odivide / -- Oexpon ** -- These names are prefixed by the normal full qualification, and -- suffixed by the overloading identification. So for example, the -- second operator "=" defined in package Extra.Messages would -- have the name: -- extra__messages__Oeq__2 ---------------------------------- -- Resolving Other Name Clashes -- ---------------------------------- -- It might be thought that the above scheme is complete, but in Ada 95, -- full qualification is insufficient to uniquely identify an entity -- in the program, even if it is not an overloaded subprogram. There -- are two possible confusions: -- a.b -- interpretation 1: entity b in body of package a -- interpretation 2: child procedure b of package a -- a.b.c -- interpretation 1: entity c in child package a.b -- interpretation 2: entity c in nested package b in body of a -- It is perfectly legal in both cases for both interpretations to -- be valid within a single program. This is a bit of a surprise since -- certainly in Ada 83, full qualification was sufficient, but not in -- Ada 95. The result is that the above scheme can result in duplicate -- names. This would not be so bad if the effect were just restricted -- to debugging information, but in fact in both the above cases, it -- is possible for both symbols to be external names, and so we have -- a real problem of name clashes. -- To deal with this situation, we provide two additional encoding -- rules for names -- First: all library subprogram names are preceded by the string -- _ada_ (which causes no duplications, since normal Ada names can -- never start with an underscore. This not only solves the first -- case of duplication, but also solves another pragmatic problem -- which is that otherwise Ada procedures can generate names that -- clash with existing system function names. Most notably, we can -- have clashes in the case of procedure Main with the C main that -- in some systems is always present. -- Second, for the case where nested packages declared in package -- bodies can cause trouble, we add a suffix which shows which -- entities in the list are body-nested packages, i.e. packages -- whose spec is within a package body. The rules are as follows, -- given a list of names in a qualified name name1.name2.... -- If none are body-nested package entities, then there is no suffix -- If at least one is a body-nested package entity, then the suffix -- is X followed by a string of b's and n's (b = body-nested package -- entity, n = not a body-nested package). -- There is one element in this string for each entity in the encoded -- expanded name except the first (the rules are such that the first -- entity of the encoded expanded name can never be a body-nested' -- package. Trailing n's are omitted, as is the last b (there must -- be at least one b, or we would not be generating a suffix at all). -- For example, suppose we have -- package x is -- pragma Elaborate_Body; -- m1 : integer; -- #1 -- end x; -- package body x is -- package y is m2 : integer; end y; -- #2 -- package body y is -- package z is r : integer; end z; -- #3 -- end; -- m3 : integer; -- #4 -- end x; -- package x.y is -- pragma Elaborate_Body; -- m2 : integer; -- #5 -- end x.y; -- package body x.y is -- m3 : integer; -- #6 -- procedure j is -- #7 -- package k is -- z : integer; -- #8 -- end k; -- begin -- null; -- end j; -- end x.y; -- procedure x.m3 is begin null; end; -- #9 -- Then the encodings would be: -- #1. x__m1 (no BNPE's in sight) -- #2. x__y__m2X (y is a BNPE) -- #3. x__y__z__rXb (y is a BNPE, so is z) -- #4. x__m3 (no BNPE's in sight) -- #5. x__y__m2 (no BNPE's in sight) -- #6. x__y__m3 (no BNPE's in signt) -- #7. x__y__j (no BNPE's in sight) -- #8. k__z (no BNPE's, only up to procedure) -- #9 _ada_x__m3 (library level subprogram) -- Note that we have instances here of both kind of potential name -- clashes, and the above examples show how the encodings avoid the -- clash as follows: -- Lines #4 and #9 both refer to the entity x.m3, but #9 is a library -- level subprogram, so it is preceded by the string _ada_ which acts -- to distinguish it from the package body entity. -- Lines #2 and #5 both refer to the entity x.y.m2, but the first -- instance is inside the body-nested package y, so there is an X -- suffix to distinguish it from the child library entity. -- Note that enumeration literals never need Xb type suffixes, since -- they are never referenced using global external names. --------------------- -- Interface Names -- --------------------- -- Note: if an interface name is present, then the external name -- is taken from the specified interface name. Given the current -- limitations of the gcc backend, this means that the debugging -- name is also set to the interface name, but conceptually, it -- would be possible (and indeed desirable) to have the debugging -- information still use the Ada name as qualified above, so we -- still fully qualify the name in the front end. ------------------------------------- -- Encodings Related to Task Types -- ------------------------------------- -- Each task object defined by a single task declaration is associated -- with a prefix that is used to qualify procedures defined in that -- task. Given -- -- package body P is -- task body TaskObj is -- procedure F1 is ... end; -- begin -- B; -- end TaskObj; -- end P; -- -- The name of subprogram TaskObj.F1 is encoded as p__taskobjTK__f1, -- The body, B, is contained in a subprogram whose name is -- p__taskobjTKB. ------------------------------------------ -- Encodings Related to Protected Types -- ------------------------------------------ -- Each protected type has an associated record type, that describes -- the actual layout of the private data. In addition to the private -- components of the type, the Corresponding_Record_Type includes one -- component of type Protection, which is the actual lock structure. -- The run-time size of the protected type is the size of the corres- -- ponding record. -- For a protected type prot, the Corresponding_Record_Type is encoded -- as protV. -- The operations of a protected type are encoded as follows: each -- operation results in two subprograms, a locking one that is called -- from outside of the object, and a non-locking one that is used for -- calls from other operations on the same object. The locking operation -- simply acquires the lock, and then calls the non-locking version. -- The names of all of these have a prefix constructed from the name of -- the type, and a suffix which is P or N, depending on whether this is -- the protected/non-locking version of the operation. -- Operations generated for protected entries follow the same encoding. -- Each entry results in two suprograms: a procedure that holds the -- entry body, and a function that holds the evaluation of the barrier. -- The names of these subprograms include the prefix '_E' or '_B' res- -- pectively. The names also include a numeric suffix to render them -- unique in the presence of overloaded entries. -- Given the declaration: -- protected type Lock is -- function Get return Integer; -- procedure Set (X: Integer); -- entry Update (Val : Integer); -- private -- Value : Integer := 0; -- end Lock; -- the following operations are created: -- lock_getN -- lock_getP, -- lock_setN -- lock_setP -- lock_update_E1s -- lock_udpate_B2s -- If the protected type implements at least one interface, the -- following additional operations are created: -- lock_get -- lock_set -- These operations are used to ensure overriding of interface level -- subprograms and proper dispatching on interface class-wide objects. -- The bodies of these operations contain calls to their respective -- protected versions: -- function lock_get return Integer is -- begin -- return lock_getP; -- end lock_get; -- procedure lock_set (X : Integer) is -- begin -- lock_setP (X); -- end lock_set; ---------------------------------------------------- -- Conversion between Entities and External Names -- ---------------------------------------------------- No_Dollar_In_Label : constant Boolean := True; -- True iff the target does not allow dollar signs ("$") in external names -- ??? We want to migrate all platforms to use the same convention. -- As a first step, we force this constant to always be True. This -- constant will eventually be deleted after we have verified that -- the migration does not cause any unforseen adverse impact. -- We chose "__" because it is supported on all platforms, which is -- not the case of "$". procedure Get_External_Name (Entity : Entity_Id; Has_Suffix : Boolean); -- Set Name_Buffer and Name_Len to the external name of entity E. -- The external name is the Interface_Name, if specified, unless -- the entity has an address clause or a suffix. -- -- If the Interface is not present, or not used, the external name -- is the concatenation of: -- -- - the string "_ada_", if the entity is a library subprogram, -- - the names of any enclosing scopes, each followed by "__", -- or "X_" if the next entity is a subunit) -- - the name of the entity -- - the string "$" (or "__" if target does not allow "$"), followed -- by homonym suffix, if the entity is an overloaded subprogram -- or is defined within an overloaded subprogram. procedure Get_External_Name_With_Suffix (Entity : Entity_Id; Suffix : String); -- Set Name_Buffer and Name_Len to the external name of entity E. -- If Suffix is the empty string the external name is as above, -- otherwise the external name is the concatenation of: -- -- - the string "_ada_", if the entity is a library subprogram, -- - the names of any enclosing scopes, each followed by "__", -- or "X_" if the next entity is a subunit) -- - the name of the entity -- - the string "$" (or "__" if target does not allow "$"), followed -- by homonym suffix, if the entity is an overloaded subprogram -- or is defined within an overloaded subprogram. -- - the string "___" followed by Suffix -- -- Note that a call to this procedure has no effect if we are not -- generating code, since the necessary information for computing the -- proper encoded name is not available in this case. -------------------------------------------- -- Subprograms for Handling Qualification -- -------------------------------------------- procedure Qualify_Entity_Names (N : Node_Id); -- Given a node N, that represents a block, subprogram body, or package -- body or spec, or protected or task type, sets a fully qualified name -- for the defining entity of given construct, and also sets fully -- qualified names for all enclosed entities of the construct (using -- First_Entity/Next_Entity). Note that the actual modifications of the -- names is postponed till a subsequent call to Qualify_All_Entity_Names. -- Note: this routine does not deal with prepending _ada_ to library -- subprogram names. The reason for this is that we only prepend _ada_ -- to the library entity itself, and not to names built from this name. procedure Qualify_All_Entity_Names; -- When Qualify_Entity_Names is called, no actual name changes are made, -- i.e. the actual calls to Qualify_Entity_Name are deferred until a call -- is made to this procedure. The reason for this deferral is that when -- names are changed semantic processing may be affected. By deferring -- the changes till just before gigi is called, we avoid any concerns -- about such effects. Gigi itself does not use the names except for -- output of names for debugging purposes (which is why we are doing -- the name changes in the first place. -- Note: the routines Get_Unqualified_[Decoded]_Name_String in Namet -- are useful to remove qualification from a name qualified by the -- call to Qualify_All_Entity_Names. -------------------------------- -- Handling of Numeric Values -- -------------------------------- -- All numeric values here are encoded as strings of decimal digits. -- Only integer values need to be encoded. A negative value is encoded -- as the corresponding positive value followed by a lower case m for -- minus to indicate that the value is negative (e.g. 2m for -2). ------------------------- -- Type Name Encodings -- ------------------------- -- In the following typ is the name of the type as normally encoded by -- the debugger rules, i.e. a non-qualified name, all in lower case, -- with standard encoding of upper half and wide characters ------------------------ -- Encapsulated Types -- ------------------------ -- In some cases, the compiler encapsulates a type by wrapping it in -- a structure. For example, this is used when a size or alignment -- specification requires a larger type. Consider: -- type y is mod 2 ** 64; -- for y'size use 256; -- In this case the compile generates a structure type y___PAD, which -- has a single field whose name is F. This single field is 64 bits -- long and contains the actual value. This kind of padding is used -- when the logical value to be stored is shorter than the object in -- which it is allocated. For example if a size clause is used to set -- a size of 256 for a signed integer value, then a typical choice is -- to wrap a 64-bit integer in a 256 bit PAD structure. -- A similar encapsulation is done for some packed array types, -- in which case the structure type is y___JM and the field name -- is OBJECT. This is used in the case of a packed array stored -- in modular representation (see section on representation of -- packed array objects). In this case the JM wrapping is used to -- achieve correct positioning of the packed array value (left or -- right justified in its field depending on endianness. -- When the debugger sees an object of a type whose name has a -- suffix of ___PAD or ___JM, the type will be a record containing -- a single field, and the name of that field will be all upper case. -- In this case, it should look inside to get the value of the inner -- field, and neither the outer structure name, nor the field name -- should appear when the value is printed. -- When the debugger sees a record named REP being a field inside -- another record, it should treat the fields inside REP as being -- part of the outer record (this REP field is only present for -- code generation purposes). The REP record should not appear in -- the values printed by the debugger. ----------------------- -- Fixed-Point Types -- ----------------------- -- Fixed-point types are encoded using a suffix that indicates the -- delta and small values. The actual type itself is a normal -- integer type. -- typ___XF_nn_dd -- typ___XF_nn_dd_nn_dd -- The first form is used when small = delta. The value of delta (and -- small) is given by the rational nn/dd, where nn and dd are decimal -- integers. -- -- The second form is used if the small value is different from the -- delta. In this case, the first nn/dd rational value is for delta, -- and the second value is for small. ------------------------------ -- VAX Floating-Point Types -- ------------------------------ -- Vax floating-point types are represented at run time as integer -- types, which are treated specially by the code generator. Their -- type names are encoded with the following suffix: -- typ___XFF -- typ___XFD -- typ___XFG -- representing the Vax F Float, D Float, and G Float types. The -- debugger must treat these specially. In particular, printing -- these values can be achieved using the debug procedures that -- are provided in package System.Vax_Float_Operations: -- procedure Debug_Output_D (Arg : D); -- procedure Debug_Output_F (Arg : F); -- procedure Debug_Output_G (Arg : G); -- These three procedures take a Vax floating-point argument, and -- output a corresponding decimal representation to standard output -- with no terminating line return. -------------------- -- Discrete Types -- -------------------- -- Discrete types are coded with a suffix indicating the range in -- the case where one or both of the bounds are discriminants or -- variable. -- Note: at the current time, we also encode compile time known -- bounds if they do not match the natural machine type bounds, -- but this may be removed in the future, since it is redundant -- for most debugging formats. However, we do not ever need XD -- encoding for enumeration base types, since here it is always -- clear what the bounds are from the total number of enumeration -- literals, and of course we do not need to encode the dummy XR -- types generated for renamings. -- typ___XD -- typ___XDL_lowerbound -- typ___XDU_upperbound -- typ___XDLU_lowerbound__upperbound -- If a discrete type is a natural machine type (i.e. its bounds -- correspond in a natural manner to its size), then it is left -- unencoded. The above encoding forms are used when there is a -- constrained range that does not correspond to the size or that -- has discriminant references or other compile time known bounds. -- The first form is used if both bounds are dynamic, in which case -- two constant objects are present whose names are typ___L and -- typ___U in the same scope as typ, and the values of these constants -- indicate the bounds. As far as the debugger is concerned, these -- are simply variables that can be accessed like any other variables. -- In the enumeration case, these values correspond to the Enum_Rep -- values for the lower and upper bounds. -- The second form is used if the upper bound is dynamic, but the -- lower bound is either constant or depends on a discriminant of -- the record with which the type is associated. The upper bound -- is stored in a constant object of name typ___U as previously -- described, but the lower bound is encoded directly into the -- name as either a decimal integer, or as the discriminant name. -- The third form is similarly used if the lower bound is dynamic, -- but the upper bound is compile time known or a discriminant -- reference, in which case the lower bound is stored in a constant -- object of name typ___L, and the upper bound is encoded directly -- into the name as either a decimal integer, or as the discriminant -- name. -- The fourth form is used if both bounds are discriminant references -- or compile time known values, with the encoding first for the lower -- bound, then for the upper bound, as previously described. ------------------- -- Modular Types -- ------------------- -- A type declared -- type x is mod N; -- Is encoded as a subrange of an unsigned base type with lower bound -- 0 and upper bound N. That is, there is no name encoding. We use -- the standard encodings provided by the debugging format. Thus -- we give these types a non-standard interpretation: the standard -- interpretation of our encoding would not, in general, imply that -- arithmetic on type x was to be performed modulo N (especially not -- when N is not a power of 2). ------------------ -- Biased Types -- ------------------ -- Only discrete types can be biased, and the fact that they are -- biased is indicated by a suffix of the form: -- typ___XB_lowerbound__upperbound -- Here lowerbound and upperbound are decimal integers, with the -- usual (postfix "m") encoding for negative numbers. Biased -- types are only possible where the bounds are compile time -- known, and the values are represented as unsigned offsets -- from the lower bound given. For example: -- type Q is range 10 .. 15; -- for Q'size use 3; -- The size clause will force values of type Q in memory to be -- stored in biased form (e.g. 11 will be represented by the -- bit pattern 001). ---------------------------------------------- -- Record Types with Variable-Length Fields -- ---------------------------------------------- -- The debugging formats do not fully support these types, and indeed -- some formats simply generate no useful information at all for such -- types. In order to provide information for the debugger, gigi creates -- a parallel type in the same scope with one of the names -- type___XVE -- type___XVU -- The former name is used for a record and the latter for the union -- that is made for a variant record (see below) if that record or -- union has a field of variable size or if the record or union itself -- has a variable size. These encodings suffix any other encodings that -- that might be suffixed to the type name. -- The idea here is to provide all the needed information to interpret -- objects of the original type in the form of a "fixed up" type, which -- is representable using the normal debugging information. -- There are three cases to be dealt with. First, some fields may have -- variable positions because they appear after variable-length fields. -- To deal with this, we encode *all* the field bit positions of the -- special ___XV type in a non-standard manner. -- The idea is to encode not the position, but rather information -- that allows computing the position of a field from the position -- of the previous field. The algorithm for computing the actual -- positions of all fields and the length of the record is as -- follows. In this description, let P represent the current -- bit position in the record. -- 1. Initialize P to 0 -- 2. For each field in the record: -- 2a. If an alignment is given (see below), then round P -- up, if needed, to the next multiple of that alignment. -- 2b. If a bit position is given, then increment P by that -- amount (that is, treat it as an offset from the end of the -- preceding record). -- 2c. Assign P as the actual position of the field -- 2d. Compute the length, L, of the represented field (see below) -- and compute P'=P+L. Unless the field represents a variant part -- (see below and also Variant Record Encoding), set P to P'. -- The alignment, if present, is encoded in the field name of the -- record, which has a suffix: -- fieldname___XVAnn -- where the nn after the XVA indicates the alignment value in storage -- units. This encoding is present only if an alignment is present. -- The size of the record described by an XVE-encoded type (in bits) -- is generally the maximum value attained by P' in step 2d above, -- rounded up according to the record's alignment. -- Second, the variable-length fields themselves are represented by -- replacing the type by a special access type. The designated type -- of this access type is the original variable-length type, and the -- fact that this field has been transformed in this way is signalled -- by encoding the field name as: -- field___XVL -- where field is the original field name. If a field is both -- variable-length and also needs an alignment encoding, then the -- encodings are combined using: -- field___XVLnn -- Note: the reason that we change the type is so that the resulting -- type has no variable-length fields. At least some of the formats -- used for debugging information simply cannot tolerate variable- -- length fields, so the encoded information would get lost. -- Third, in the case of a variant record, the special union -- that contains the variants is replaced by a normal C union. -- In this case, the positions are all zero. -- Discriminants appear before any variable-length fields that depend -- on them, with one exception. In some cases, a discriminant -- governing the choice of a variant clause may appear in the list -- of fields of an XVE type after the entry for the variant clause -- itself (this can happen in the presence of a representation clause -- for the record type in the source program). However, when this -- happens, the discriminant's position may be determined by first -- applying the rules described in this section, ignoring the variant -- clause. As a result, discriminants can always be located -- independently of the variable-length fields that depend on them. -- The size of the ___XVE or ___XVU record or union is set to the -- alignment (in bytes) of the original object so that the debugger -- can calculate the size of the original type. -- As an example of this encoding, consider the declarations: -- type Q is array (1 .. V1) of Float; -- alignment 4 -- type R is array (1 .. V2) of Long_Float; -- alignment 8 -- type X is record -- A : Character; -- B : Float; -- C : String (1 .. V3); -- D : Float; -- E : Q; -- F : R; -- G : Float; -- end record; -- The encoded type looks like: -- type anonymousQ is access Q; -- type anonymousR is access R; -- type X___XVE is record -- A : Character; -- position contains 0 -- B : Float; -- position contains 24 -- C___XVL : access String (1 .. V3); -- position contains 0 -- D___XVA4 : Float; -- position contains 0 -- E___XVL4 : anonymousQ; -- position contains 0 -- F___XVL8 : anonymousR; -- position contains 0 -- G : Float; -- position contains 0 -- end record; -- Any bit sizes recorded for fields other than dynamic fields and -- variants are honored as for ordinary records. -- Notes: -- 1) The B field could also have been encoded by using a position -- of zero, and an alignment of 4, but in such a case, the coding by -- position is preferred (since it takes up less space). We have used -- the (illegal) notation access xxx as field types in the example -- above. -- 2) The E field does not actually need the alignment indication -- but this may not be detected in this case by the conversion -- routines. -- 3) Our conventions do not cover all XVE-encoded records in which -- some, but not all, fields have representation clauses. Such -- records may, therefore, be displayed incorrectly by debuggers. -- This situation is not common. ----------------------- -- Base Record Types -- ----------------------- -- Under certain circumstances, debuggers need two descriptions -- of a record type, one that gives the actual details of the -- base type's structure (as described elsewhere in these -- comments) and one that may be used to obtain information -- about the particular subtype and the size of the objects -- being typed. In such cases the compiler will substitute a -- type whose name is typically compiler-generated and -- irrelevant except as a key for obtaining the actual type. -- Specifically, if this name is x, then we produce a record -- type named x___XVS consisting of one field. The name of -- this field is that of the actual type being encoded, which -- we'll call y (the type of this single field is arbitrary). -- Both x and y may have corresponding ___XVE types. -- The size of the objects typed as x should be obtained from -- the structure of x (and x___XVE, if applicable) as for -- ordinary types unless there is a variable named x___XVZ, which, -- if present, will hold the the size (in bits) of x. -- The type x will either be a subtype of y (see also Subtypes -- of Variant Records, below) or will contain no fields at -- all. The layout, types, and positions of these fields will -- be accurate, if present. (Currently, however, the GDB -- debugger makes no use of x except to determine its size). -- Among other uses, XVS types are sometimes used to encode -- unconstrained types. For example, given -- -- subtype Int is INTEGER range 0..10; -- type T1 (N: Int := 0) is record -- F1: String (1 .. N); -- end record; -- type AT1 is array (INTEGER range <>) of T1; -- -- the element type for AT1 might have a type defined as if it had -- been written: -- -- type at1___C_PAD is record null; end record; -- for at1___C_PAD'Size use 16 * 8; -- -- and there would also be -- -- type at1___C_PAD___XVS is record t1: Integer; end record; -- type t1 is ... -- -- Had the subtype Int been dynamic: -- -- subtype Int is INTEGER range 0 .. M; -- M a variable -- -- Then the compiler would also generate a declaration whose effect -- would be -- -- at1___C_PAD___XVZ: constant Integer := 32 + M * 8 + padding term; -- -- Not all unconstrained types are so encoded; the XVS -- convention may be unnecessary for unconstrained types of -- fixed size. However, this encoding is always necessary when -- a subcomponent type (array element's type or record field's -- type) is an unconstrained record type some of whose -- components depend on discriminant values. ----------------- -- Array Types -- ----------------- -- Since there is no way for the debugger to obtain the index subtypes -- for an array type, we produce a type that has the name of the -- array type followed by "___XA" and is a record whose field names -- are the names of the types for the bounds. The types of these -- fields is an integer type which is meaningless. -- To conserve space, we do not produce this type unless one of -- the index types is either an enumeration type, has a variable -- upper bound, has a lower bound different from the constant 1, -- is a biased type, or is wider than "sizetype". -- Given the full encoding of these types (see above description for -- the encoding of discrete types), this means that all necessary -- information for addressing arrays is available. In some -- debugging formats, some or all of the bounds information may -- be available redundantly, particularly in the fixed-point case, -- but this information can in any case be ignored by the debugger. ---------------------------- -- Note on Implicit Types -- ---------------------------- -- The compiler creates implicit type names in many situations where -- a type is present semantically, but no specific name is present. -- For example: -- S : Integer range M .. N; -- Here the subtype of S is not integer, but rather an anonymous -- subtype of Integer. Where possible, the compiler generates names -- for such anonymous types that are related to the type from which -- the subtype is obtained as follows: -- T name suffix -- where name is the name from which the subtype is obtained, using -- lower case letters and underscores, and suffix starts with an upper -- case letter. For example, the name for the above declaration of S -- might be: -- TintegerS4b -- If the debugger is asked to give the type of an entity and the type -- has the form T name suffix, it is probably appropriate to just use -- "name" in the response since this is what is meaningful to the -- programmer. ------------------------------------------------- -- Subprograms for Handling Encoded Type Names -- ------------------------------------------------- procedure Get_Encoded_Name (E : Entity_Id); -- If the entity is a typename, store the external name of the entity as in -- Get_External_Name, followed by three underscores plus the type encoding -- in Name_Buffer with the length in Name_Len, and an ASCII.NUL character -- stored following the name. Otherwise set Name_Buffer and Name_Len to -- hold the entity name. Note that a call to this procedure has no effect -- if we are not generating code, since the necessary information for -- computing the proper encoded name is not available in this case. -------------- -- Renaming -- -------------- -- Debugging information is generated for exception, object, package, -- and subprogram renaming (generic renamings are not significant, since -- generic templates are not relevant at debugging time). -- Consider a renaming declaration of the form -- x typ renames y; -- There is one case in which no special debugging information is required, -- namely the case of an object renaming where the backend allocates a -- reference for the renamed variable, and the entity x is this reference. -- The debugger can handle this case without any special processing or -- encoding (it won't know it was a renaming, but that does not matter). -- All other cases of renaming generate a dummy type definition for -- an entity whose name is: -- x___XR for an object renaming -- x___XRE for an exception renaming -- x___XRP for a package renaming -- The name is fully qualified in the usual manner, i.e. qualified in -- the same manner as the entity x would be. In the case of a package -- renaming where x is a child unit, the qualification includes the -- name of the parent unit, to disambiguate child units with the same -- simple name and (of necessity) different parents. -- Note: subprogram renamings are not encoded at the present time -- The type is an enumeration type with a single enumeration literal -- that is an identifier which describes the renamed variable. -- For the simple entity case, where y is an entity name, -- the enumeration is of the form: -- (y___XE) -- i.e. the enumeration type has a single field, whose name -- matches the name y, with the XE suffix. The entity for this -- enumeration literal is fully qualified in the usual manner. -- All subprogram, exception, and package renamings fall into -- this category, as well as simple object renamings. -- For the object renaming case where y is a selected component or an -- indexed component, the literal name is suffixed by additional fields -- that give details of the components. The name starts as above with -- a y___XE entity indicating the outer level variable. Then a series -- of selections and indexing operations can be specified as follows: -- Indexed component -- A series of subscript values appear in sequence, the number -- corresponds to the number of dimensions of the array. The -- subscripts have one of the following two forms: -- XSnnn -- Here nnn is a constant value, encoded as a decimal -- integer (pos value for enumeration type case). Negative -- values have a trailing 'm' as usual. -- XSe -- Here e is the (unqualified) name of a constant entity in -- the same scope as the renaming which contains the subscript -- value. -- Slice -- For the slice case, we have two entries. The first is for -- the lower bound of the slice, and has the form -- XLnnn -- XLe -- Specifies the lower bound, using exactly the same encoding -- as for an XS subscript as described above. -- Then the upper bound appears in the usual XSnnn/XSe form -- Selected component -- For a selected component, we have a single entry -- XRf -- Here f is the field name for the selection -- For an explicit deference (.all), we have a single entry -- XA -- As an example, consider the declarations: -- package p is -- type q is record -- m : string (2 .. 5); -- end record; -- -- type r is array (1 .. 10, 1 .. 20) of q; -- -- g : r; -- -- z : string renames g (1,5).m(2 ..3) -- end p; -- The generated type definition would appear as -- type p__z___XR is -- (p__g___XEXS1XS5XRmXL2XS3); -- p__g___XE--------------------outer entity is g -- XS1-----------------first subscript for g -- XS5--------------second subscript for g -- XRm-----------select field m -- XL2--------lower bound of slice -- XS3-----upper bound of slice function Debug_Renaming_Declaration (N : Node_Id) return Node_Id; -- The argument N is a renaming declaration. The result is a type -- declaration as described in the above paragraphs. If not special -- debug declaration, than Empty is returned. --------------------------- -- Packed Array Encoding -- --------------------------- -- For every packed array, two types are created, and both appear in -- the debugging output. -- The original declared array type is a perfectly normal array type, -- and its index bounds indicate the original bounds of the array. -- The corresponding packed array type, which may be a modular type, or -- may be an array of bytes type (see Exp_Pakd for full details). This -- is the type that is actually used in the generated code and for -- debugging information for all objects of the packed type. -- The name of the corresponding packed array type is: -- ttt___XPnnn -- where -- ttt is the name of the original declared array -- nnn is the component size in bits (1-31) -- When the debugger sees that an object is of a type that is encoded -- in this manner, it can use the original type to determine the bounds, -- and the component size to determine the packing details. ------------------------------------------- -- Packed Array Representation in Memory -- ------------------------------------------- -- Packed arrays are represented in tightly packed form, with no extra -- bits between components. This is true even when the component size -- is not a factor of the storage unit size, so that as a result it is -- possible for components to cross storage unit boundaries. -- The layout in storage is identical, regardless of whether the -- implementation type is a modular type or an array-of-bytes type. -- See Exp_Pakd for details of how these implementation types are used, -- but for the purpose of the debugger, only the starting address of -- the object in memory is significant. -- The following example should show clearly how the packing works in -- the little-endian and big-endian cases: -- type B is range 0 .. 7; -- for B'Size use 3; -- type BA is array (0 .. 5) of B; -- pragma Pack (BA); -- BV : constant BA := (1,2,3,4,5,6); -- Little endian case -- BV'Address + 2 BV'Address + 1 BV'Address + 0 -- +-----------------+-----------------+-----------------+ -- | ? ? ? ? ? ? 1 1 | 0 1 0 1 1 0 0 0 | 1 1 0 1 0 0 0 1 | -- +-----------------+-----------------+-----------------+ -- <---------> <-----> <---> <---> <-----> <---> <---> -- unused bits BV(5) BV(4) BV(3) BV(2) BV(1) BV(0) -- -- Big endian case -- -- BV'Address + 0 BV'Address + 1 BV'Address + 2 -- +-----------------+-----------------+-----------------+ -- | 0 0 1 0 1 0 0 1 | 1 1 0 0 1 0 1 1 | 1 0 ? ? ? ? ? ? | -- +-----------------+-----------------+-----------------+ -- <---> <---> <-----> <---> <---> <-----> <---------> -- BV(0) BV(1) BV(2) BV(3) BV(4) BV(5) unused bits -- Note that if a modular type is used to represent the array, the -- allocation in memory is not the same as a normal modular type. -- The difference occurs when the allocated object is larger than -- the size of the array. For a normal modular type, we extend the -- value on the left with zeroes. -- For example, in the normal modular case, if we have a 6-bit -- modular type, declared as mod 2**6, and we allocate an 8-bit -- object for this type, then we extend the value with two bits -- on the most significant end, and in either the little-endian -- or big-endian case, the value 63 is represented as 00111111 -- in binary in memory. -- For a modular type used to represent a packed array, the rule is -- different. In this case, if we have to extend the value, then we -- do it with undefined bits (which are not initialized and whose value -- is irrelevant to any generated code). Furthermore these bits are on -- the right (least significant bits) in the big-endian case, and on the -- left (most significant bits) in the little-endian case. -- For example, if we have a packed boolean array of 6 bits, all set -- to True, stored in an 8-bit object, then the value in memory in -- binary is ??111111 in the little-endian case, and 111111?? in the -- big-endian case. -- This is done so that the representation of packed arrays does not -- depend on whether we use a modular representation or array of bytes -- as previously described. This ensures that we can pass such values -- by reference in the case where a subprogram has to be able to handle -- values stored in either form. -- Note that when we extract the value of such a modular packed array, -- we expect to retrieve only the relevant bits, so in this same example, -- when we extract the value, we get 111111 in both cases, and the code -- generated by the front end assumes this, although it does not assume -- that any high order bits are defined. -- There are opportunities for optimization based on the knowledge that -- the unused bits are irrelevant for these type of packed arrays. For -- example if we have two such 6-bit-in-8-bit values and we do an -- assignment: -- a := b; -- Then logically, we extract the 6 bits and store only 6 bits in the -- result, but the back end is free to simply assign the entire 8-bits -- in this case, since we don't actually care about the undefined bits. -- However, in the equality case, it is important to ensure that the -- undefined bits do not participate in an equality test. -- If a modular packed array value is assigned to a register, then -- logically it could always be held right justified, to avoid any -- need to shift, e.g. when doing comparisons. But probably this is -- a bad choice, as it would mean that an assignment such as a := b -- above would require shifts when one value is in a register and the -- other value is in memory. ------------------------------------------------------ -- Subprograms for Handling Packed Array Type Names -- ------------------------------------------------------ function Make_Packed_Array_Type_Name (Typ : Entity_Id; Csize : Uint) return Name_Id; -- This function is used in Exp_Pakd to create the name that is encoded -- as described above. The entity Typ provides the name ttt, and the -- value Csize is the component size that provides the nnn value. -------------------------------------- -- Pointers to Unconstrained Arrays -- -------------------------------------- -- There are two kinds of pointers to arrays. The debugger can tell -- which format is in use by the form of the type of the pointer. -- Fat Pointers -- Fat pointers are represented as a struct with two fields. This -- struct has two distinguished field names: -- P_ARRAY is a pointer to the array type. The name of this -- type is the unconstrained type followed by "___XUA". This -- array will have bounds which are the discriminants, and -- hence are unparsable, but will give the number of -- subscripts and the component type. -- P_BOUNDS is a pointer to a struct, the name of whose type is the -- unconstrained array name followed by "___XUB" and which has -- fields of the form -- LBn (n a decimal integer) lower bound of n'th dimension -- UBn (n a decimal integer) upper bound of n'th dimension -- The bounds may be any integral type. In the case of an -- enumeration type, Enum_Rep values are used. -- The debugging information will sometimes reference an anonymous -- fat pointer type. Such types are given the name xxx___XUP, where -- xxx is the name of the designated type. If the debugger is asked -- to output such a type name, the appropriate form is "access xxx". -- Thin Pointers -- The value of a thin pointer is a pointer to the second field -- of a structure with two fields. The name of this structure's -- type is "arr___XUT", where "arr" is the name of the -- unconstrained array type. Even though it actually points into -- middle of this structure, the thin pointer's type in debugging -- information is pointer-to-arr___XUT. -- The first field of arr___XUT is named BOUNDS, and has a type -- named arr___XUB, with the structure described for such types -- in fat pointers, as described above. -- The second field of arr___XUT is named ARRAY, and contains -- the actual array. Because this array has a dynamic size, -- determined by the BOUNDS field that precedes it, all of the -- information about arr___XUT is encoded in a parallel type named -- arr___XUT___XVE, with fields BOUNDS and ARRAY___XVL. As for -- previously described ___XVE types, ARRAY___XVL has -- a pointer-to-array type. However, the array type in this case -- is named arr___XUA and only its element type is meaningful, -- just as described for fat pointers. -------------------------------------- -- Tagged Types and Type Extensions -- -------------------------------------- -- A type C derived from a tagged type P has a field named "_parent" -- of type P that contains its inherited fields. The type of this -- field is usually P (encoded as usual if it has a dynamic size), -- but may be a more distant ancestor, if P is a null extension of -- that type. -- The type tag of a tagged type is a field named _tag, of type void*. -- If the type is derived from another tagged type, its _tag field is -- found in its _parent field. ----------------------------- -- Variant Record Encoding -- ----------------------------- -- The variant part of a variant record is encoded as a single field -- in the enclosing record, whose name is: -- discrim___XVN -- where discrim is the unqualified name of the variant. This field name -- is built by gigi (not by code in this unit). In the case of an -- Unchecked_Union record, this discriminant will not appear in the -- record, and the debugger must proceed accordingly (basically it -- can treat this case as it would a C union). -- The type corresponding to this field has a name that is obtained -- by concatenating the type name with the above string and is similar -- to a C union, in which each member of the union corresponds to one -- variant. However, unlike a C union, the size of the type may be -- variable even if each of the components are fixed size, since it -- includes a computation of which variant is present. In that case, -- it will be encoded as above and a type with the suffix "___XVN___XVU" -- will be present. -- The name of the union member is encoded to indicate the choices, and -- is a string given by the following grammar: -- union_name ::= {choice} | others_choice -- choice ::= simple_choice | range_choice -- simple_choice ::= S number -- range_choice ::= R number T number -- number ::= {decimal_digit} [m] -- others_choice ::= O (upper case letter O) -- The m in a number indicates a negative value. As an example of this -- encoding scheme, the choice 1 .. 4 | 7 | -10 would be represented by -- R1T4S7S10m -- In the case of enumeration values, the values used are the -- actual representation values in the case where an enumeration type -- has an enumeration representation spec (i.e. they are values that -- correspond to the use of the Enum_Rep attribute). -- The type of the inner record is given by the name of the union -- type (as above) concatenated with the above string. Since that -- type may itself be variable-sized, it may also be encoded as above -- with a new type with a further suffix of "___XVU". -- As an example, consider: -- type Var (Disc : Boolean := True) is record -- M : Integer; -- case Disc is -- when True => -- R : Integer; -- S : Integer; -- when False => -- T : Integer; -- end case; -- end record; -- V1 : Var; -- In this case, the type var is represented as a struct with three -- fields, the first two are "disc" and "m", representing the values -- of these record components. -- The third field is a union of two types, with field names S1 and O. -- S1 is a struct with fields "r" and "s", and O is a struct with -- fields "t". ------------------------------------------------ -- Subprograms for Handling Variant Encodings -- ------------------------------------------------ procedure Get_Variant_Encoding (V : Node_Id); -- This procedure is called by Gigi with V being the variant node. -- The corresponding encoding string is returned in Name_Buffer with -- the length of the string in Name_Len, and an ASCII.NUL character -- stored following the name. --------------------------------- -- Subtypes of Variant Records -- --------------------------------- -- A subtype of a variant record is represented by a type in which the -- union field from the base type is replaced by one of the possible -- values. For example, if we have: -- type Var (Disc : Boolean := True) is record -- M : Integer; -- case Disc is -- when True => -- R : Integer; -- S : Integer; -- when False => -- T : Integer; -- end case; -- end record; -- V1 : Var; -- V2 : Var (True); -- V3 : Var (False); -- Here V2 for example is represented with a subtype whose name is -- something like TvarS3b, which is a struct with three fields. The -- first two fields are "disc" and "m" as for the base type, and -- the third field is S1, which contains the fields "r" and "s". -- The debugger should simply ignore structs with names of the form -- corresponding to variants, and consider the fields inside as -- belonging to the containing record. ------------------------------------------- -- Character literals in Character Types -- ------------------------------------------- -- Character types are enumeration types at least one of whose -- enumeration literals is a character literal. Enumeration literals -- are usually simply represented using their identifier names. In -- the case where an enumeration literal is a character literal, the -- name aencoded as described in the following paragraph. -- A name QUhh, where each 'h' is a lower-case hexadecimal digit, -- stands for a character whose Unicode encoding is hh, and -- QWhhhh likewise stands for a wide character whose encoding -- is hhhh. The representation values are encoded as for ordinary -- enumeration literals (and have no necessary relationship to the -- values encoded in the names). -- For example, given the type declaration -- type x is (A, 'C', B); -- the second enumeration literal would be named QU43 and the -- value assigned to it would be 1. ----------------------------------------------- -- Secondary Dispatch tables of tagged types -- ----------------------------------------------- procedure Get_Secondary_DT_External_Name (Typ : Entity_Id; Ancestor_Typ : Entity_Id; Suffix_Index : Int); -- Set Name_Buffer and Name_Len to the external name of one secondary -- dispatch table of Typ. If the interface has been inherited from some -- ancestor then Ancestor_Typ is such node (in this case the secondary -- DT is needed to handle overriden primitives); if there is no such -- ancestor then Ancestor_Typ is equal to Typ. -- -- Internal rule followed for the generation of the external name: -- -- Case 1. If the secondary dispatch has not been inherited from some -- ancestor of Typ then the external name is composed as -- follows: -- External_Name (Typ) + Suffix_Number + 'P' -- -- Case 2. if the secondary dispatch table has been inherited from some -- ancestor then the external name is composed as follows: -- External_Name (Typ) + '_' + External_Name (Ancestor_Typ) -- + Suffix_Number + 'P' -- -- Note: We have to use the external names (instead of simply their -- names) to protect the frontend against programs that give the same -- name to all the interfaces and use the expanded name to reference -- them. The Suffix_Number is used to differentiate all the secondary -- dispatch tables of a given type. -- -- Examples: -- -- package Pkg1 is | package Pkg2 is | package Pkg3 is -- type Typ is | type Typ is | type Typ is -- interface; | interface; | interface; -- end Pkg1; | end Pkg; | end Pkg3; -- -- with Pkg1, Pkg2, Pkg3; -- package Case_1 is -- type Typ is new Pkg1.Typ and Pkg2.Typ and Pkg3.Typ with ... -- end Case_1; -- -- with Case_1; -- package Case_2 is -- type Typ is new Case_1.Typ with ... -- end Case_2; -- -- These are the external names generated for Case_1.Typ (note that -- Pkg1.Typ is associated with the Primary Dispatch Table, because it -- is the the parent of this type, and hence no external name is -- generated for it). -- case_1__typ0P (associated with Pkg2.Typ) -- case_1__typ1P (associated with Pkg3.Typ) -- -- These are the external names generated for Case_2.Typ: -- case_2__typ_case_1__typ0P -- case_2__typ_case_1__typ1P ---------------------------- -- Effect of Optimization -- ---------------------------- -- If the program is compiled with optimization on (e.g. -O1 switch -- specified), then there may be variations in the output from the -- above specification. In particular, objects may disappear from -- the output. This includes not only constants and variables that -- the program declares at the source level, but also the x___L and -- x___U constants created to describe the lower and upper bounds of -- subtypes with dynamic bounds. This means for example, that array -- bounds may disappear if optimization is turned on. The debugger -- is expected to recognize that these constants are missing and -- deal as best as it can with the limited information available. end Exp_Dbug;
programs/oeis/175/A175630.asm
jmorken/loda
1
177636
; A175630: a(n) = n-th pentagonal number mod (n+2). ; 0,1,1,2,4,0,3,7,2,7,1,7,0,7,15,7,16,7,17,7,18,7,19,7,20,7,21,7,22,7,23,7,24,7,25,7,26,7,27,7,28,7,29,7,30,7,31,7,32,7,33,7,34,7,35,7,36,7,37,7,38,7,39,7,40,7,41,7,42,7,43,7,44,7,45,7,46,7,47,7,48,7,49,7,50,7,51,7,52,7,53,7,54,7,55,7,56,7,57,7,58,7,59,7,60,7,61,7,62,7,63,7,64,7,65,7,66,7,67,7,68,7,69,7,70,7,71,7,72,7,73,7,74,7,75,7,76,7,77,7,78,7,79,7,80,7,81,7,82,7,83,7,84,7,85,7,86,7,87,7,88,7,89,7,90,7,91,7,92,7,93,7,94,7,95,7,96,7,97,7,98,7,99,7,100,7,101,7,102,7,103,7,104,7,105,7,106,7,107,7,108,7,109,7,110,7,111,7,112,7,113,7,114,7,115,7,116,7,117,7,118,7,119,7,120,7,121,7,122,7,123,7,124,7,125,7,126,7,127,7,128,7,129,7,130,7,131,7,132,7 mov $1,2 mov $2,$0 mov $3,4 lpb $0 sub $0,1 sub $1,1 mod $1,$3 add $1,$0 mov $3,$2 add $3,2 mov $4,2 lpe mul $1,$4 div $1,2
src/Generic/Test/Data/Maybe.agda
turion/Generic
30
1992
module Generic.Test.Data.Maybe where open import Generic.Main as Main hiding (Maybe; just; nothing) Maybe : ∀ {α} -> Set α -> Set α Maybe = readData Main.Maybe pattern nothing = #₀ lrefl pattern just x = !#₁ (relv x , lrefl) just′ : ∀ {α} {A : Set α} -> A -> Maybe A just′ = just nothing′ : ∀ {α} {A : Set α} -> Maybe A nothing′ = nothing
test/Succeed/Issue930.agda
shlevy/agda
1,989
7794
<reponame>shlevy/agda -- {-# OPTIONS -v tc.conv.level:60 #-} -- {-# OPTIONS -v tc.conv:30 #-} {- Agda development version: Wed Oct 30 16:30:06 GMT 2013 The last line of code triggers the following error, but replacing '_' with 'a' typechecks just fine. Bug.agda:32,8-11 tt != a of type ⊤ when checking that the expression s _ has type P tt → P a Changing 'Set (q a)' to 'Set' in line 26 suppresses the error. -} -- Andreas, 2013-10-31 Fixed by retrying sort comparison after -- successful type comparison (which might have solve the missing level metas). module Issue930 where open import Common.Level data ⊤ : Set where tt : ⊤ postulate q : ⊤ → Level P : (a : ⊤) → Set (q a) s : (a : ⊤) → P tt → P a a : ⊤ g : (P tt → P a) → ⊤ v : ⊤ v = g (s _) {- coerce term v = s ?1 from type t1 = P tt → P ?1 to type t2 = P tt → P a equalSort Set (q tt ⊔ q ?1) == Set (q a ⊔ q tt) compareAtom q tt == q a : Level compareTerm tt == a : ⊤ sort comparison failed -- THIS ERROR IS CAUGHT, BUT RETHROWN AT THE END compareTerm P tt → P ?1 =< P tt → P a : Set (q tt ⊔ q ?1) compare function types t1 = P tt → P ?1 t2 = P tt → P a equalSort Set (q ?1) == Set (q a) compareTerm ?1 == a : ⊤ attempting shortcut ?1 := a solving _13 := a -}
libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/ceil.asm
witchcraft2001/z88dk
640
10935
<filename>libsrc/_DEVELOPMENT/math/float/math16/lm16/c/sccz80/ceil.asm SECTION code_fp_math16 PUBLIC ceilf16 EXTERN asm_f16_ceil defc ceilf16 = asm_f16_ceil ; SDCC bridge for Classic IF __CLASSIC PUBLIC _ceilf16 EXTERN cm16_sdcc_ceil defc _ceilf16 = cm16_sdcc_ceil ENDIF
antlr-editing-plugins/antlr-in-memory-build/src/test/resources/org/nemesis/antlr/memory/tool/LeftRecursion.g4
timboudreau/ANTLR4-Plugins-for-NetBeans
1
7283
<filename>antlr-editing-plugins/antlr-in-memory-build/src/test/resources/org/nemesis/antlr/memory/tool/LeftRecursion.g4<gh_stars>1-10 /* * Copyright 2020 Mastfrog Technologies. * * 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. */ grammar LeftRecursion; // TODO: Add your lexer and parser rules here. // A top level rule the ends with EOF to guarantee the WHOLE file is parsed compilation_unit : ( array | statement )+ EOF; array : OpenBracket expr ( Comma expr )+ CloseBracket; number : Integer; prefixen : Tilde OpenBracket Star Integer+ CloseBracket; statement : ( exprOuter | expr | block ) Semi; thing : Tilde* modExpr; exprOuter : expr | block | thing; block : prefixen* OpenBrace ( array | exprOuter | blarg )+ CloseBrace; blarg : 'wug wug'; fnurg : 'pools'; poob : ( poob Tilde )* 'gah' poob | blarg; expr : prefixen* number | prefixen* expr Star expr | prefixen* expr Plus expr | prefixen* expr Div expr | prefixen* expr Minus expr | prefixen* thing Plus expr | parenExpr | array | prefixen* array; modExpr : expr Percent expr; parenExpr : OpenParen expr CloseParen; Integer : MINUS? DIGITS; LineComment : OPEN_LINE_COMMENT .*? S_LINE_END -> channel ( 1 ); Comment : OPEN_COMMENT .*? CLOSE_COMMENT -> channel ( 1 ); Whitespace : [ \t\n\r] -> channel ( 2 ); Comma : ','; Tilde : '~'; Star : '*'; Percent : '%'; OpenBrace : '{'; CloseBrace : '}'; OpenParen : '('; CloseParen : ')'; OpenBracket : '['; CloseBracket : ']'; Semi : ';'; Plus : '+'; Minus : '-'; Div : '/'; fragment OPEN_LINE_COMMENT : '//'; fragment OPEN_COMMENT : '/*'; fragment CLOSE_COMMENT : '*/'; fragment S_LINE_END : '\r'? '\n'; fragment DIGITS : DIGIT+; fragment DIGIT : [0-9]; fragment MINUS : '-';
tools-src/gnu/binutils/gas/testsuite/gasp/include.asm
enfoTek/tomato.linksys.e2000.nvram-mod
80
28821
HI .INCLUDE "INC1.H" THERE .END
coverage/PENDING_SUBMIT/amdvlk/0596-COVERAGE-instruction-simplify-5692/work/variant/1_spirv_asm/shader.frag.asm
asuonpaa/ShaderTests
0
93559
<reponame>asuonpaa/ShaderTests ; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 68 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %4 "main" %12 %42 OpExecutionMode %4 OriginUpperLeft OpSource ESSL 320 OpName %4 "main" OpName %9 "v0" OpName %12 "gl_FragCoord" OpName %20 "buf1" OpMemberName %20 0 "_GLF_uniform_float_values" OpName %22 "" OpName %42 "_GLF_color" OpName %45 "buf0" OpMemberName %45 0 "_GLF_uniform_int_values" OpName %47 "" OpDecorate %12 BuiltIn FragCoord OpDecorate %19 ArrayStride 16 OpMemberDecorate %20 0 Offset 0 OpDecorate %20 Block OpDecorate %22 DescriptorSet 0 OpDecorate %22 Binding 1 OpDecorate %42 Location 0 OpDecorate %44 ArrayStride 16 OpMemberDecorate %45 0 Offset 0 OpDecorate %45 Block OpDecorate %47 DescriptorSet 0 OpDecorate %47 Binding 0 %2 = OpTypeVoid %3 = OpTypeFunction %2 %6 = OpTypeFloat 32 %7 = OpTypeVector %6 2 %8 = OpTypePointer Function %7 %10 = OpTypeVector %6 4 %11 = OpTypePointer Input %10 %12 = OpVariable %11 Input %17 = OpTypeInt 32 0 %18 = OpConstant %17 1 %19 = OpTypeArray %6 %18 %20 = OpTypeStruct %19 %21 = OpTypePointer Uniform %20 %22 = OpVariable %21 Uniform %23 = OpTypeInt 32 1 %24 = OpConstant %23 0 %25 = OpTypePointer Uniform %6 %35 = OpTypeBool %36 = OpTypeVector %35 2 %41 = OpTypePointer Output %10 %42 = OpVariable %41 Output %43 = OpConstant %17 2 %44 = OpTypeArray %23 %43 %45 = OpTypeStruct %44 %46 = OpTypePointer Uniform %45 %47 = OpVariable %46 Uniform %48 = OpTypePointer Uniform %23 %52 = OpConstant %23 1 %4 = OpFunction %2 None %3 %5 = OpLabel %9 = OpVariable %8 Function %13 = OpLoad %10 %12 %14 = OpVectorShuffle %7 %13 %13 0 1 %15 = OpLoad %10 %12 %16 = OpVectorShuffle %7 %15 %15 0 1 %26 = OpAccessChain %25 %22 %24 %24 %27 = OpLoad %6 %26 %28 = OpCompositeConstruct %7 %27 %27 %29 = OpExtInst %7 %1 FMin %16 %28 %30 = OpExtInst %7 %1 FMin %14 %29 OpStore %9 %30 %31 = OpLoad %7 %9 %32 = OpAccessChain %25 %22 %24 %24 %33 = OpLoad %6 %32 %34 = OpCompositeConstruct %7 %33 %33 %37 = OpFOrdEqual %36 %31 %34 %38 = OpAll %35 %37 OpSelectionMerge %40 None OpBranchConditional %38 %39 %63 %39 = OpLabel %49 = OpAccessChain %48 %47 %24 %24 %50 = OpLoad %23 %49 %51 = OpConvertSToF %6 %50 %53 = OpAccessChain %48 %47 %24 %52 %54 = OpLoad %23 %53 %55 = OpConvertSToF %6 %54 %56 = OpAccessChain %48 %47 %24 %52 %57 = OpLoad %23 %56 %58 = OpConvertSToF %6 %57 %59 = OpAccessChain %48 %47 %24 %24 %60 = OpLoad %23 %59 %61 = OpConvertSToF %6 %60 %62 = OpCompositeConstruct %10 %51 %55 %58 %61 OpStore %42 %62 OpBranch %40 %63 = OpLabel %64 = OpAccessChain %48 %47 %24 %52 %65 = OpLoad %23 %64 %66 = OpConvertSToF %6 %65 %67 = OpCompositeConstruct %10 %66 %66 %66 %66 OpStore %42 %67 OpBranch %40 %40 = OpLabel OpReturn OpFunctionEnd
programs/oeis/281/A281264.asm
neoneye/loda
22
245302
; A281264: Base-2 logarithm of denominator of Sum_{k=0..n^2-1}((-1)^k*sqrt(Pi)/(Gamma(1/2-k)*Gamma(1+k)))-n). ; 0,4,15,26,46,67,94,120,158,194,236,281,333,386,445,502,574,642,716,792,875,960,1054,1143,1244,1345,1451,1560,1676,1793,1916,2036,2174,2306,2444,2584,2731,2880,3034,3190,3356,3519,3690,3862,4041,4226,4413,4597,4796,4992 add $0,1 pow $0,2 lpb $0 sub $0,1 add $1,$0 add $0,2 div $0,2 lpe mov $0,$1
theorems/cohomology/Theory.agda
cmknapp/HoTT-Agda
0
12796
<reponame>cmknapp/HoTT-Agda<filename>theorems/cohomology/Theory.agda {-# OPTIONS --without-K #-} open import HoTT open import cohomology.Exactness open import cohomology.Choice open import cohomology.FunctionOver module cohomology.Theory where -- [i] for the universe level of the group record CohomologyTheory i : Type (lsucc i) where field C : ℤ → Ptd i → Group i CEl : ℤ → Ptd i → Type i CEl n X = Group.El (C n X) Cid : (n : ℤ) (X : Ptd i) → CEl n X Cid n X = GroupStructure.ident (Group.group-struct (C n X)) ⊙CEl : ℤ → Ptd i → Ptd i ⊙CEl n X = ⊙[ CEl n X , Cid n X ] field CF-hom : (n : ℤ) {X Y : Ptd i} → fst (X ⊙→ Y) → (C n Y →ᴳ C n X) CF-ident : (n : ℤ) {X : Ptd i} → CF-hom n {X} {X} (⊙idf X) == idhom (C n X) CF-comp : (n : ℤ) {X Y Z : Ptd i} (g : fst (Y ⊙→ Z)) (f : fst (X ⊙→ Y)) → CF-hom n (g ⊙∘ f) == CF-hom n f ∘ᴳ CF-hom n g CF : (n : ℤ) {X Y : Ptd i} → fst (X ⊙→ Y) → CEl n Y → CEl n X CF n f = GroupHom.f (CF-hom n f) field C-abelian : (n : ℤ) (X : Ptd i) → is-abelian (C n X) C-Susp : (n : ℤ) (X : Ptd i) → C (succ n) (⊙Susp X) ≃ᴳ C n X C-SuspF : (n : ℤ) {X Y : Ptd i} (f : fst (X ⊙→ Y)) → fst (C-Susp n X) ∘ᴳ CF-hom (succ n) (⊙susp-fmap f) == CF-hom n f ∘ᴳ fst (C-Susp n Y) C-exact : (n : ℤ) {X Y : Ptd i} (f : fst (X ⊙→ Y)) → is-exact (CF-hom n (⊙cfcod' f)) (CF-hom n f) C-additive : (n : ℤ) {I : Type i} (Z : I → Ptd i) → ((W : I → Type i) → has-choice 0 I W) → is-equiv (GroupHom.f (Πᴳ-hom-in (CF-hom n ∘ ⊙bwin {X = Z}))) {- Alternate form of suspension axiom naturality -} C-Susp-↓ : (n : ℤ) {X Y : Ptd i} (f : fst (X ⊙→ Y)) → CF-hom (succ n) (⊙susp-fmap f) == CF-hom n f [ uncurry _→ᴳ_ ↓ pair×= (group-ua (C-Susp n Y)) (group-ua (C-Susp n X)) ] C-Susp-↓ n f = hom-over-isos $ function-over-equivs _ _ $ ap GroupHom.f (C-SuspF n f) record OrdinaryTheory i : Type (lsucc i) where constructor ordinary-theory field cohomology-theory : CohomologyTheory i open CohomologyTheory cohomology-theory public field C-dimension : (n : ℤ) → n ≠ 0 → C n (⊙Lift ⊙S⁰) == 0ᴳ
src/command_line.adb
aeszter/lox-spark
6
14888
with Ada.Command_Line; package body Command_Line with SPARK_Mode => Off is function Argument (Number : Positive) return String is begin return Ada.Command_Line.Argument (Number); end Argument; function Argument_Count return Natural is begin return Ada.Command_Line.Argument_Count; end Argument_Count; procedure Set_Exit_Status (Code : Exit_Status) is begin Ada.Command_Line.Set_Exit_Status (Ada.Command_Line.Exit_Status (Code)); end Set_Exit_Status; end Command_Line;
BackwardCompat/BackwardCompat/Main.asm
ryancollins-dev/Assembly
0
244585
;----------x86-64bit---------- ;.code ;main proc ;mov rax,2 ;mov rbx,3 ;mov rcx,4 ;ret ;main endp ;end ;----------x86-32bit---------- ;.386 ;.model flat ;.code ;main proc ;mov eax,2 ;mov ebx,3 ;mov ecx,4 ;ret ;main endp ;end ;----------16bit---------- .386 .model flat .code main proc mov ax,2 mov bx,3 mov cx,4 ret main endp end
msx/tools/xmodem.retired/debug.asm
zoggins/yellow-msx-series-for-rc2014
19
179204
PRT_HEXA: PUSH AF ; SAVE AF PUSH BC PUSH DE ; SAVE DE PUSH HL CALL HEXASCII ; CONVERT VALUE IN A TO HEX CHARS IN DE PUSH HL LD E, H ; GET THE HIGH ORDER HEX CHAR BDOSFN CONOUT ; PRINT IT POP DE BDOSFN CONOUT ; PRINT IT LD E, ' ' BDOSFN CONOUT POP HL POP DE ; RESTORE DE POP BC POP AF ; RESTORE AF RET ; DONE ;=============================================================================== ; CONVERT BINARY VALUE IN A TO ASCII HEX CHARACTERS IN HL HEXASCII: LD H, A ; SAVE A IN D CALL HEXCONV ; CONVERT LOW NIBBLE OF A TO HEX LD L, A ; SAVE IT IN E LD A, H ; GET ORIGINAL VALUE BACK RLCA ; ROTATE HIGH ORDER NIBBLE TO LOW BITS RLCA RLCA RLCA CALL HEXCONV ; CONVERT NIBBLE LD H, A ; SAVE IT IN D RET ; DONE ;=============================================================================== ; CONVERT LOW NIBBLE OF A TO ASCII HEX HEXCONV: AND $0F ; LOW NIBBLE ONLY ADD A, $90 DAA ADC A, $40 DAA RET PRT_BUFF_STATE: PUSH AF PUSH BC PUSH DE PUSH HL BDOSFN STROUT LD DE, MSG.BUFFSTATE BDOSFN STROUT LD HL, SIO_RCVBUF LD B, 5 LOOP: LD A, (HL) CALL PRT_HEXA INC HL DJNZ LOOP LD DE, MSG.NEWLINE BDOSFN STROUT POP HL POP DE POP BC POP AF RET MSG.BUFFSTATE DB "buf: \r\n$"
Task/Extend-your-language/Agda/extend-your-language.agda
LaudateCorpus1/RosettaCodeData
1
11792
<gh_stars>1-10 data Bool : Set where true : Bool false : Bool if_then_else : ∀ {l} {A : Set l} -> Bool -> A -> A -> A if true then t else e = t if false then t else e = e if2_,_then_else1_else2_else_ : ∀ {l} {A : Set l} -> (b1 b2 : Bool) -> (t e1 e2 e : A) -> A if2 true , true then t else1 e1 else2 e2 else e = t if2 true , false then t else1 e1 else2 e2 else e = e1 if2 false , true then t else1 e1 else2 e2 else e = e2 if2 false , false then t else1 e1 else2 e2 else e = e example : Bool example = if2 true , false then true else1 false else2 true else false
libsrc/graphics/bee/w_clg_320.asm
grancier/z180
0
7511
; ; MicroBEE pseudo graphics routines ; ; cls () -- clear screen ; ; <NAME> - 2016 ; ; ; $Id: w_clg_320.asm,v 1.3 2017/01/02 21:51:24 aralbrec Exp $ ; SECTION code_clib PUBLIC clg PUBLIC _clg EXTERN cleargraphics EXTERN swapgfxbk .vdutab ; 40x24 defb $35,40,$2D,$24,$1b,$05,$19,$1a,$48,$0a,$2a,$0a,$20,0,0,0 .clg ._clg call swapgfxbk defb $3E, 1, $DB, 9 ;{HALVES VIDEO CLOCK SPEED} ; Set 80x25 mode LD HL,vdutab LD C,0 LD B,16 .vdloop LD A,C OUT ($0C),A LD A,(HL) OUT ($0D),A INC HL INC C DJNZ vdloop ld a,128 out ($1c),a ; Enable Premium Graphics ; Init character and attribute map ld hl,$f000 ld de,40 xor a ; bank #0 ;ld a,64 ; "Inverse" attribute bit, start on bank #0 ex af,af ld b,8 ; 16K mode: 8 banks (5 columns per bank) .bank ;xor a ; chr 0 ld a,128 ; PCG character #0 push bc ld c,5 .five_col push hl ld b,25 .one_col ld (hl),a inc a push af ld a,128+16 out ($1c),a ; attribute page ex af,af ld (hl),a ex af,af ld a,128 out ($1c),a ; back to txt page pop af add hl,de djnz one_col pop hl inc hl ; next column dec c jr nz,five_col pop bc ex af,af inc a ; point to next bank ex af,af djnz bank jp cleargraphics
data/pokemon/dex_entries/machop.asm
Dev727/ancientplatinum
28
242608
db "SUPERPOWER@" ; species name dw 207, 430 ; height, weight db "It trains by" next "lifting rocks in" next "the mountains. It" page "can even pick up a" next "GRAVELER with" next "ease.@"
core/lib/types/Pointed.agda
mikeshulman/HoTT-Agda
0
16479
<gh_stars>0 {-# OPTIONS --without-K --rewriting #-} open import lib.Basics open import lib.NType2 open import lib.types.Bool open import lib.types.Empty open import lib.types.Paths open import lib.types.Pi open import lib.types.Sigma {- This file contains various lemmas that rely on lib.types.Paths or functional extensionality for pointed maps. -} module lib.types.Pointed where {- Pointed maps -} -- function extensionality for pointed maps ⊙λ= : ∀ {i j} {X : Ptd i} {Y : Ptd j} {f g : X ⊙→ Y} (p : ∀ x → fst f x == fst g x) (α : snd f == snd g [ (λ y → y == pt Y) ↓ p (pt X) ]) → f == g ⊙λ= {g = g} p α = pair= (λ= p) (↓-app=cst-in (↓-idf=cst-out α ∙ ap (_∙ snd g) (! (app=-β p _)))) {- ⊙λ=' : ∀ {i j} {X : Ptd i} {Y : Ptd j} {f g : X ⊙→ Y} (p : ∀ x → fst f x == fst g x) (α : snd f == p (pt X) ∙ snd g) → f == g ⊙λ=' p α = ⊙λ= p (↓-idf=cst-in α) -} -- associativity of pointed maps ⊙∘-assoc-pt : ∀ {i j k} {A : Type i} {B : Type j} {C : Type k} {a₁ a₂ : A} (f : A → B) {b : B} (g : B → C) {c : C} (p : a₁ == a₂) (q : f a₂ == b) (r : g b == c) → ⊙∘-pt (g ∘ f) p (⊙∘-pt g q r) == ⊙∘-pt g (⊙∘-pt f p q) r ⊙∘-assoc-pt _ _ idp _ _ = idp ⊙∘-assoc : ∀ {i j k l} {X : Ptd i} {Y : Ptd j} {Z : Ptd k} {W : Ptd l} (h : Z ⊙→ W) (g : Y ⊙→ Z) (f : X ⊙→ Y) → ((h ⊙∘ g) ⊙∘ f) == (h ⊙∘ (g ⊙∘ f)) ⊙∘-assoc (h , hpt) (g , gpt) (f , fpt) = ⊙λ= (λ _ → idp) (⊙∘-assoc-pt g h fpt gpt hpt) {- Pointed equivalences -} -- Extracting data from an pointed equivalence module _ {i j} {X : Ptd i} {Y : Ptd j} (⊙e : X ⊙≃ Y) where private e : de⊙ X ≃ de⊙ Y e = (fst (fst ⊙e) , snd ⊙e) ⊙≃-to-≃ = e ⊙–>-pt : –> e (pt X) == pt Y ⊙–>-pt = snd (fst ⊙e) private p = ⊙–>-pt ⊙–> : X ⊙→ Y ⊙–> = fst ⊙e ⊙<–-pt : <– e (pt Y) == pt X ⊙<–-pt = ap (<– e) (! ⊙–>-pt) ∙ <–-inv-l e (pt X) ⊙<– : Y ⊙→ X ⊙<– = <– e , ⊙<–-pt infix 120 _⊙⁻¹ _⊙⁻¹ : Y ⊙≃ X _⊙⁻¹ = ⊙<– , is-equiv-inverse (snd ⊙e) ⊙<–-inv-l : ⊙<– ⊙∘ ⊙–> == ⊙idf _ ⊙<–-inv-l = ⊙λ= (<–-inv-l e) $ ↓-idf=cst-in $ ap (<– e) p ∙ ap (<– e) (! p) ∙ <–-inv-l e (pt X) =⟨ ! (∙-assoc (ap (<– e) p) (ap (<– e) (! p)) (<–-inv-l e (pt X))) ⟩ (ap (<– e) p ∙ ap (<– e) (! p)) ∙ <–-inv-l e (pt X) =⟨ ∙-ap (<– e) p (! p) ∙ ap (ap (<– e)) (!-inv-r p) |in-ctx (λ w → w ∙ <–-inv-l e (pt X)) ⟩ <–-inv-l e (pt X) =⟨ ! (∙-unit-r _) ⟩ <–-inv-l e (pt X) ∙ idp =∎ ⊙<–-inv-r : ⊙–> ⊙∘ ⊙<– == ⊙idf _ ⊙<–-inv-r = ⊙λ= (<–-inv-r e) $ ↓-idf=cst-in $ ap (–> e) (ap (<– e) (! p) ∙ <–-inv-l e (pt X)) ∙ p =⟨ ap-∙ (–> e) (ap (<– e) (! p)) (<–-inv-l e (pt X)) |in-ctx (λ w → w ∙ p) ⟩ (ap (–> e) (ap (<– e) (! p)) ∙ ap (–> e) (<–-inv-l e (pt X))) ∙ p =⟨ <–-inv-adj e (pt X) |in-ctx (λ w → (ap (–> e) (ap (<– e) (! p)) ∙ w) ∙ p) ⟩ (ap (–> e) (ap (<– e) (! p)) ∙ <–-inv-r e (–> e (pt X))) ∙ p =⟨ ∘-ap (–> e) (<– e) (! p) |in-ctx (λ w → (w ∙ <–-inv-r e (–> e (pt X))) ∙ p) ⟩ (ap (–> e ∘ <– e) (! p) ∙ <–-inv-r e (–> e (pt X))) ∙ p =⟨ ap (_∙ p) (! (↓-app=idf-out (apd (<–-inv-r e) (! p)))) ⟩ (<–-inv-r e (pt Y) ∙' (! p)) ∙ p =⟨ ∙'=∙ (<–-inv-r e (pt Y)) (! p) |in-ctx _∙ p ⟩ (<–-inv-r e (pt Y) ∙ (! p)) ∙ p =⟨ ∙-assoc (<–-inv-r e (pt Y)) (! p) p ⟩ <–-inv-r e (pt Y) ∙ (! p ∙ p) =⟨ !-inv-l p |in-ctx (<–-inv-r e (pt Y)) ∙_ ⟩ <–-inv-r e (pt Y) ∙ idp =∎ module _ {i j k} {X : Ptd i} {Y : Ptd j} {Z : Ptd k} (⊙e : X ⊙≃ Y) where post⊙∘-is-equiv : is-equiv (λ (k : Z ⊙→ X) → ⊙–> ⊙e ⊙∘ k) post⊙∘-is-equiv = is-eq f g f-g g-f where f = ⊙–> ⊙e ⊙∘_ g = ⊙<– ⊙e ⊙∘_ abstract f-g = λ k → ! (⊙∘-assoc (⊙–> ⊙e) (⊙<– ⊙e) k) ∙ ap (_⊙∘ k) (⊙<–-inv-r ⊙e) ∙ ⊙∘-unit-l k g-f = λ k → ! (⊙∘-assoc (⊙<– ⊙e) (⊙–> ⊙e) k) ∙ ap (_⊙∘ k) (⊙<–-inv-l ⊙e) ∙ ⊙∘-unit-l k pre⊙∘-is-equiv : is-equiv (λ (k : Y ⊙→ Z) → k ⊙∘ ⊙–> ⊙e) pre⊙∘-is-equiv = is-eq f g f-g g-f where f = _⊙∘ ⊙–> ⊙e g = _⊙∘ ⊙<– ⊙e abstract f-g = λ k → ⊙∘-assoc k (⊙<– ⊙e) (⊙–> ⊙e) ∙ ap (k ⊙∘_) (⊙<–-inv-l ⊙e) ∙ ⊙∘-unit-r k g-f = λ k → ⊙∘-assoc k (⊙–> ⊙e) (⊙<– ⊙e) ∙ ap (k ⊙∘_) (⊙<–-inv-r ⊙e) ∙ ⊙∘-unit-r k pre⊙∘-equiv : (Y ⊙→ Z) ≃ (X ⊙→ Z) pre⊙∘-equiv = _ , pre⊙∘-is-equiv {- Pointed maps out of bool -} -- intuition : [f true] is fixed and the only changable part is [f false]. ⊙Bool→-to-idf : ∀ {i} {X : Ptd i} → ⊙Bool ⊙→ X → de⊙ X ⊙Bool→-to-idf (h , _) = h false ⊙Bool→-equiv-idf : ∀ {i} (X : Ptd i) → (⊙Bool ⊙→ X) ≃ de⊙ X ⊙Bool→-equiv-idf {i} X = equiv ⊙Bool→-to-idf g f-g g-f where g : de⊙ X → ⊙Bool ⊙→ X g x = (if_then pt X else x) , idp abstract f-g : ∀ x → ⊙Bool→-to-idf (g x) == x f-g x = idp g-f : ∀ H → g (⊙Bool→-to-idf H) == H g-f (h , hpt) = pair= (λ= lemma) (↓-app=cst-in $ idp =⟨ ! (!-inv-l hpt) ⟩ ! hpt ∙ hpt =⟨ ! (app=-β lemma true) |in-ctx (λ w → w ∙ hpt) ⟩ app= (λ= lemma) true ∙ hpt =∎) where lemma : ∀ b → fst (g (h false)) b == h b lemma true = ! hpt lemma false = idp
alloy4fun_models/trashltl/models/7/iSuEMmo4p8cNhcMEk.als
Kaixi26/org.alloytools.alloy
0
2148
open main pred idiSuEMmo4p8cNhcMEk_prop8 { all l: File.link | eventually l in Trash } pred __repair { idiSuEMmo4p8cNhcMEk_prop8 } check __repair { idiSuEMmo4p8cNhcMEk_prop8 <=> prop8o }
Transynther/x86/_processed/NONE/_st_/i9-9900K_12_0xa0.log_9_1908.asm
ljhsiun2/medusa
9
22832
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r13 push %r15 push %rbp push %rbx push %rcx push %rdi push %rsi lea addresses_WC_ht+0xe4a3, %rsi nop xor $12721, %r13 mov $0x6162636465666768, %rbp movq %rbp, (%rsi) nop nop nop inc %r15 lea addresses_WT_ht+0x1950b, %rsi lea addresses_D_ht+0x18af3, %rdi nop nop add $29545, %r12 mov $31, %rcx rep movsq nop nop sub %rsi, %rsi lea addresses_WC_ht+0x17ec2, %r12 clflush (%r12) nop nop nop nop nop cmp %r13, %r13 vmovups (%r12), %ymm6 vextracti128 $1, %ymm6, %xmm6 vpextrq $0, %xmm6, %rdi cmp %rsi, %rsi lea addresses_WC_ht+0xa577, %rsi lea addresses_WT_ht+0x4ec3, %rdi cmp $52763, %rbx mov $1, %rcx rep movsb nop nop nop nop nop xor $53765, %rcx lea addresses_UC_ht+0x29c3, %rbx nop nop cmp %r15, %r15 mov (%rbx), %ebp nop nop nop nop inc %rcx lea addresses_WT_ht+0xb673, %rcx nop nop nop nop nop and $22799, %rbx mov (%rcx), %r13d nop nop xor %r13, %r13 lea addresses_UC_ht+0x126c3, %rsi lea addresses_UC_ht+0x170c3, %rdi nop cmp $35793, %r13 mov $69, %rcx rep movsl nop nop nop nop nop cmp %r13, %r13 lea addresses_UC_ht+0x86c3, %rsi lea addresses_A_ht+0x9dbb, %rdi clflush (%rsi) sub %rbx, %rbx mov $12, %rcx rep movsq nop nop nop xor $11265, %r15 lea addresses_A_ht+0x4dab, %rsi lea addresses_normal_ht+0x9623, %rdi nop nop cmp $21387, %rbx mov $6, %rcx rep movsw nop nop nop nop xor $32711, %rsi lea addresses_WC_ht+0x1a6c3, %rdi nop nop nop nop dec %rbx mov $0x6162636465666768, %rsi movq %rsi, (%rdi) nop nop sub %rcx, %rcx lea addresses_WC_ht+0x12c3, %r13 clflush (%r13) nop nop nop nop nop and $17387, %rdi mov $0x6162636465666768, %rsi movq %rsi, %xmm2 and $0xffffffffffffffc0, %r13 vmovntdq %ymm2, (%r13) nop sub $60960, %r12 lea addresses_A_ht+0x14d43, %rbp nop nop nop nop nop sub $51141, %rdi movb (%rbp), %cl nop nop nop nop dec %rbp pop %rsi pop %rdi pop %rcx pop %rbx pop %rbp pop %r15 pop %r13 pop %r12 ret .global s_faulty_load s_faulty_load: push %r10 push %r12 push %r14 push %r15 push %rbx push %rcx push %rdi push %rdx push %rsi // Store lea addresses_UC+0x16413, %r14 nop nop nop inc %rdx movw $0x5152, (%r14) nop nop nop nop dec %rbx // REPMOV lea addresses_PSE+0xd2c3, %rsi lea addresses_PSE+0xfec3, %rdi xor %r10, %r10 mov $2, %rcx rep movsb nop add $7611, %r10 // Faulty Load lea addresses_WC+0xcec3, %rsi nop and %rdi, %rdi mov (%rsi), %bx lea oracles, %rsi and $0xff, %rbx shlq $12, %rbx mov (%rsi,%rbx,1), %rbx pop %rsi pop %rdx pop %rdi pop %rcx pop %rbx pop %r15 pop %r14 pop %r12 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_WC', 'AVXalign': False, 'size': 2}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 4, 'type': 'addresses_UC', 'AVXalign': False, 'size': 2}} {'src': {'same': False, 'congruent': 8, 'type': 'addresses_PSE'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 8, 'type': 'addresses_PSE'}} [Faulty Load] {'src': {'NT': False, 'same': True, 'congruent': 0, 'type': 'addresses_WC', 'AVXalign': False, 'size': 2}, 'OP': 'LOAD'} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 2, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 8}} {'src': {'same': False, 'congruent': 2, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 0, 'type': 'addresses_D_ht'}} {'src': {'NT': False, 'same': False, 'congruent': 0, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 32}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 1, 'type': 'addresses_WC_ht'}, 'OP': 'REPM', 'dst': {'same': True, 'congruent': 10, 'type': 'addresses_WT_ht'}} {'src': {'NT': False, 'same': True, 'congruent': 5, 'type': 'addresses_UC_ht', 'AVXalign': False, 'size': 4}, 'OP': 'LOAD'} {'src': {'NT': False, 'same': False, 'congruent': 4, 'type': 'addresses_WT_ht', 'AVXalign': True, 'size': 4}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 11, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 9, 'type': 'addresses_UC_ht'}} {'src': {'same': False, 'congruent': 11, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 3, 'type': 'addresses_A_ht'}} {'src': {'same': False, 'congruent': 3, 'type': 'addresses_A_ht'}, 'OP': 'REPM', 'dst': {'same': False, 'congruent': 4, 'type': 'addresses_normal_ht'}} {'OP': 'STOR', 'dst': {'NT': False, 'same': False, 'congruent': 10, 'type': 'addresses_WC_ht', 'AVXalign': True, 'size': 8}} {'OP': 'STOR', 'dst': {'NT': True, 'same': False, 'congruent': 10, 'type': 'addresses_WC_ht', 'AVXalign': False, 'size': 32}} {'src': {'NT': False, 'same': False, 'congruent': 7, 'type': 'addresses_A_ht', 'AVXalign': False, 'size': 1}, 'OP': 'LOAD'} {'33': 9} 33 33 33 33 33 33 33 33 33 */
exercises/practice 2 page 30/Test2.asm
amirshnll/assembly-exercises
4
21975
include io.h cr equ 10 lf equ 13 .model small .Stack 200h .Data result db 10 dup(?) sum dw 100 sum_prompt db 'The sum is: ', 0 .Code main proc mov ax, @data ; mov ax, seg data mov ds, ax ;------------------------------------------------------------- clrscr mov ax,0 mov cx,100 for:add ax,cx loop for mov sum,ax itoa result,sum output sum_prompt output result ;------------------------------------------------------------- mov ax, 4c00h int 21h main endp end main
Validation/pyFrame3DD-master/gcc-master/gcc/ada/xutil.adb
djamal2727/Main-Bearing-Analytical-Model
0
17333
------------------------------------------------------------------------------ -- -- -- GNAT SYSTEM UTILITIES -- -- -- -- X U T I L -- -- -- -- B o d y -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ package body XUtil is use Ada.Streams.Stream_IO; use Ada.Strings.Unbounded; -------------- -- New_Line -- -------------- procedure New_Line (F : Sfile) is begin Character'Write (Stream (F), ASCII.LF); end New_Line; --------- -- Put -- --------- procedure Put (F : Sfile; S : String) is begin String'Write (Stream (F), S); end Put; --------- -- Put -- --------- procedure Put (F : Sfile; S : VString) is begin Put (F, To_String (S)); end Put; -------------- -- Put_Line -- -------------- procedure Put_Line (F : Sfile; S : String) is begin Put (F, S); New_Line (F); end Put_Line; -------------- -- Put_Line -- -------------- procedure Put_Line (F : Sfile; S : VString) is begin Put_Line (F, To_String (S)); end Put_Line; end XUtil;
libsrc/spectrum/if1/if1_from_mdv.asm
andydansby/z88dk-mk2
1
171174
<gh_stars>1-10 ; ; ZX IF1 & Microdrive functions ; ; int i1_from_mdv() ; ; returns TRUE if the current program ; has been loaded from the microdrive ; ; $Id: if1_from_mdv.asm,v 1.1 2008/06/29 08:25:47 aralbrec Exp $ ; XLIB if1_from_mdv if1_from_mdv: ld de,($5c53) ; PROG :location of BASIC program ld hl,($5c4b) ; VARS :location of variables sbc hl,de ; program length ld de,(23787) sbc hl,de ld hl,1 ret z dec hl ret
notes/FOT/PA/Inductive/CanonicalTerm.agda
asr/fotc
11
12935
<reponame>asr/fotc<filename>notes/FOT/PA/Inductive/CanonicalTerm.agda {-# OPTIONS --exact-split #-} {-# OPTIONS --no-sized-types #-} {-# OPTIONS --no-universe-polymorphism #-} {-# OPTIONS --without-K #-} module FOT.PA.Inductive.CanonicalTerm where -- We cannot extract a canonical term from a non-intuitionistic proof. open import PA.Inductive.Base open import PA.Inductive.PropertiesI ------------------------------------------------------------------------------ -- The existential projections ∃-proj₁ : ∀ {A} → ∃ A → ℕ ∃-proj₁ (x , _) = x ∃-proj₂ : ∀ {A} → (h : ∃ A) → A (∃-proj₁ h) ∃-proj₂ (_ , Ax) = Ax ------------------------------------------------------------------------------ -- Non-intuitionistic logic theorems -- The principle of the excluded middle. postulate pem : ∀ {A} → A ∨ ¬ A -- The principle of indirect proof (proof by contradiction). ¬-elim : ∀ {A} → (¬ A → ⊥) → A ¬-elim h = case (λ a → a) (λ ¬a → ⊥-elim (h ¬a)) pem -- ∃ in terms of ∀ and ¬. ¬∃¬→∀ : {A : ℕ → Set} → ¬ (∃[ x ] ¬ A x) → ∀ {x} → A x ¬∃¬→∀ h {x} = ¬-elim (λ h₁ → h (x , h₁)) ------------------------------------------------------------------------------ -- Intuitionistic proof. proof₁ : ∃[ x ] x ≢ succ x proof₁ = succ zero , x≢Sx -- Non-intuitionistic proof. proof₂ : ∃[ x ] x ≢ succ x proof₂ = ¬-elim (λ h → x≢Sx {succ zero} (¬∃¬→∀ h)) -- We can extract a canonical term from an intuitionistic proof. canonicalTerm₁ : ∃-proj₁ proof₁ ≡ succ zero canonicalTerm₁ = refl -- We cannot extract a canonical term from a non-intuitionistic proof. -- canonicalTerm₂ : ∃-proj₁ proof₂ ≡ succ zero -- canonicalTerm₂ = {!refl!} -- Agda error: -- -- ∃-proj₁ ([ (λ a → a) , (λ ¬a → ⊥-elim (x≢Sx (¬∃¬→∀ ¬a))) ] pem) != -- succ zero of type M -- when checking that the expression refl has type -- ∃-proj₁ proof₂ ≡ succ zero
source/required/s-exctab.ads
ytomino/drake
33
6130
pragma License (Unrestricted); -- runtime unit required by compiler with System.Unwind; package System.Exception_Table is pragma Preelaborate; -- required for user-defined exception by compiler (s-exctab.ads) procedure Register_Exception (X : Unwind.Exception_Data_Access) is null; -- unimplemented pragma Inline (Register_Exception); -- [gcc-7] can not skip calling null procedure end System.Exception_Table;
Transynther/x86/_processed/NONE/_xt_sm_/i7-7700_9_0x48_notsx.log_21829_1918.asm
ljhsiun2/medusa
9
14076
<reponame>ljhsiun2/medusa .global s_prepare_buffers s_prepare_buffers: push %r14 push %r15 push %r9 push %rbp push %rcx push %rdi push %rdx push %rsi lea addresses_A_ht+0x1705f, %r15 add %r9, %r9 mov $0x6162636465666768, %rdi movq %rdi, (%r15) nop nop nop nop xor %r14, %r14 lea addresses_normal_ht+0xd883, %r15 clflush (%r15) nop and %rdx, %rdx movl $0x61626364, (%r15) nop nop xor $47141, %r15 lea addresses_D_ht+0x1db3f, %rbp sub $34080, %rcx movups (%rbp), %xmm0 vpextrq $1, %xmm0, %r15 and $20643, %rbp lea addresses_normal_ht+0xa83f, %rsi lea addresses_WT_ht+0x16f3f, %rdi clflush (%rsi) nop nop nop inc %r14 mov $25, %rcx rep movsw xor %rdx, %rdx lea addresses_A_ht+0x13b5f, %rsi lea addresses_UC_ht+0x88ff, %rdi nop nop inc %r9 mov $40, %rcx rep movsq nop nop inc %rbp lea addresses_UC_ht+0xbf3f, %rsi lea addresses_WT_ht+0xb09f, %rdi clflush (%rsi) nop xor %r14, %r14 mov $119, %rcx rep movsb nop nop nop nop nop cmp $10881, %r9 pop %rsi pop %rdx pop %rdi pop %rcx pop %rbp pop %r9 pop %r15 pop %r14 ret .global s_faulty_load s_faulty_load: push %r12 push %r13 push %r8 push %rax push %rbx push %rcx push %rdx // Store lea addresses_PSE+0xcb3f, %rdx nop nop nop nop sub %r12, %r12 movw $0x5152, (%rdx) nop nop nop nop add %rdx, %rdx // Load lea addresses_PSE+0x1e869, %r8 nop nop add %rax, %rax mov (%r8), %r13d nop add %rdx, %rdx // Store lea addresses_RW+0xb80f, %rbx nop nop nop nop cmp $63396, %rcx mov $0x5152535455565758, %r13 movq %r13, %xmm5 vmovups %ymm5, (%rbx) nop nop xor %r12, %r12 // Faulty Load lea addresses_PSE+0xcb3f, %r12 nop nop nop nop xor %rcx, %rcx mov (%r12), %eax lea oracles, %rdx and $0xff, %rax shlq $12, %rax mov (%rdx,%rax,1), %rax pop %rdx pop %rcx pop %rbx pop %rax pop %r8 pop %r13 pop %r12 ret /* <gen_faulty_load> [REF] {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_PSE', 'congruent': 0}} {'dst': {'same': True, 'NT': False, 'AVXalign': False, 'size': 2, 'type': 'addresses_PSE', 'congruent': 0}, 'OP': 'STOR'} {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': True, 'size': 4, 'type': 'addresses_PSE', 'congruent': 0}} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 32, 'type': 'addresses_RW', 'congruent': 4}, 'OP': 'STOR'} [Faulty Load] {'OP': 'LOAD', 'src': {'same': True, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_PSE', 'congruent': 0}} <gen_prepare_buffer> {'dst': {'same': False, 'NT': False, 'AVXalign': True, 'size': 8, 'type': 'addresses_A_ht', 'congruent': 4}, 'OP': 'STOR'} {'dst': {'same': False, 'NT': False, 'AVXalign': False, 'size': 4, 'type': 'addresses_normal_ht', 'congruent': 2}, 'OP': 'STOR'} {'OP': 'LOAD', 'src': {'same': False, 'NT': False, 'AVXalign': False, 'size': 16, 'type': 'addresses_D_ht', 'congruent': 7}} {'dst': {'same': False, 'congruent': 9, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': True, 'congruent': 8, 'type': 'addresses_normal_ht'}} {'dst': {'same': False, 'congruent': 6, 'type': 'addresses_UC_ht'}, 'OP': 'REPM', 'src': {'same': True, 'congruent': 0, 'type': 'addresses_A_ht'}} {'dst': {'same': False, 'congruent': 3, 'type': 'addresses_WT_ht'}, 'OP': 'REPM', 'src': {'same': False, 'congruent': 7, 'type': 'addresses_UC_ht'}} {'52': 21829} 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 52 */
Univalence/Obsolete/SEquivSCPermEquiv2.agda
JacquesCarette/pi-dual
14
10191
{-# OPTIONS --without-K #-} module SEquivSCPermEquiv where -- Data types from standard library open import Level using (zero) open import Data.Nat using (ℕ; _+_) open import Data.Fin using (Fin; inject+; raise) open import Data.Sum using (inj₁; inj₂) open import Data.Product using (_,_; proj₁; proj₂) open import Data.Vec using (tabulate) renaming (_++_ to _++V_) open import Function using (_∘_; id) -- Properties from standard library open import Data.Vec.Properties using (lookup∘tabulate) open import Relation.Binary using (Setoid) open import Function.Equality using (_⇨_; _⟨$⟩_; _⟶_) renaming (_∘_ to _⊚_; id to id⊚) open import Relation.Binary.PropositionalEquality using (_≡_; refl; sym; trans; cong; cong₂; setoid; →-to-⟶; module ≡-Reasoning) -- Next are imports from our libraries of Proofs (FiniteFunctions and -- VectorLemmas) open import Proofs using (finext; _!!_; tabulate-split) -- Next we import our notions of equivalences open import Equiv using (_∼_; module qinv; mkqinv; _≃_) -- Next we import sets equipped with equivalence relations and -- specialize to our notions of equivalence open import SetoidEquiv using ( ≃S-Setoid; -- statement of thm2 _≃S_; -- statement of thm2 module _≃S_; -- proof of thm2 module _≋_; -- proof of thm2 equiv; -- proof of thm2 equivS; -- proof of thm2 _≋_ -- proof of thm2 -- id≃S -- 0≃S; -- _≃S≡_; -- _⊎≃S_ ) -- Finally we import our definition of permutations. We start with Vec -- (Fin m) n for arbitrary m and n which---if well-formed---would -- define a permutation in the Cauchy representation. These vectors -- assume a canonical enumeration of the finite sets which we make -- explicit in the module Enumeration. To ensure these vectors are -- well-formed, we define a concrete permutation as a pair of two such -- vectors with two proofs that they compose to the identity -- permutation. open import FinVec using (_∘̂_; 1C) open import FinVecProperties using (~⇒≡; !!⇒∘̂; 1C!!i≡i; cauchyext) open import EnumEquiv using (Enum; 0E; _⊕e_; eval-left; eval-right) open import FiniteType using (FiniteType; ∣_∣) open import ConcretePermutation -- using (CPerm; cp; p≡; 0p; idp; _⊎p_) -- ; SCPerm) open import ConcretePermutationProperties -- using (CPerm; cp; p≡; 0p; idp; _⊎p_) -- ; SCPerm) ------------------------------------------------------------------------------ -- The big (semantic) theorem! thm2 : ∀ {A B : Set} → (a : FiniteType A) → (b : FiniteType B) → (≃S-Setoid A B) ≃S (SCPerm ∣ b ∣ ∣ a ∣) thm2 {A} {B} (n , (enumA , mkqinv labelA αA βA)) (m , (enumB , mkqinv labelB αB βB)) = equiv fwd' bwd' α β where open ≡-Reasoning AS = setoid A BS = setoid B A≃Fn : A ≃ Fin n A≃Fn = (enumA , mkqinv labelA αA βA) B≃Fn : B ≃ Fin m B≃Fn = (enumB , mkqinv labelB αB βB) CP⇨ = SCPerm m n ⇨ SCPerm m n fwd : (AS ≃S BS) → CPerm m n fwd A≃B = cp (tabulate f) (tabulate g) (~⇒≡ β) (~⇒≡ α) where module A≃SB = _≃S_ A≃B f : Fin n → Fin m f j = enumB (A≃SB.f ⟨$⟩ labelA j) g : Fin m → Fin n g j = enumA (A≃SB.g ⟨$⟩ labelB j) α : f ∘ g ∼ id α i = begin (enumB (A≃SB.f ⟨$⟩ (labelA (enumA (A≃SB.g ⟨$⟩ labelB i)))) ≡⟨ cong (λ x → enumB (A≃SB.f ⟨$⟩ x)) (βA ((A≃SB.g ⟨$⟩ labelB i))) ⟩ enumB (A≃SB.f ⟨$⟩ (A≃SB.g ⟨$⟩ labelB i)) ≡⟨ cong enumB (A≃SB.α refl) ⟩ enumB (labelB i) ≡⟨ αB i ⟩ i ∎) β : g ∘ f ∼ id β i = begin ( enumA (A≃SB.g ⟨$⟩ labelB (enumB (A≃SB.f ⟨$⟩ labelA i))) ≡⟨ cong (λ x → enumA (A≃SB.g ⟨$⟩ x)) (βB _) ⟩ enumA (A≃SB.g ⟨$⟩ (A≃SB.f ⟨$⟩ labelA i)) ≡⟨ cong enumA (A≃SB.β refl) ⟩ enumA (labelA i) ≡⟨ αA i ⟩ i ∎) fwd' : ≃S-Setoid A B ⟶ setoid (CPerm m n) fwd' = record { _⟨$⟩_ = fwd ; cong = λ {i} {j} i≋j → p≡ (finext (λ k → cong enumB (f≡ i≋j (labelA k)) )) } where open _≋_ bwd : CPerm m n → (AS ≃S BS) bwd (cp p₁ p₂ αp βp) = equiv f g α β where f : AS ⟶ BS f = →-to-⟶ (λ a → labelB (p₁ !! enumA a)) g : BS ⟶ AS g = →-to-⟶ (λ b → labelA (p₂ !! (enumB b))) α : Setoid._≈_ (BS ⇨ BS) (f ⊚ g) id⊚ α {b} {.b} refl = begin ( labelB (p₁ !! (enumA (labelA (p₂ !! (enumB b))))) ≡⟨ cong (λ x → labelB (p₁ !! x)) (αA _) ⟩ labelB (p₁ !! (p₂ !! enumB b)) ≡⟨ cong labelB (!!⇒∘̂ _ _ (enumB b)) ⟩ labelB ((p₂ ∘̂ p₁) !! enumB b) ≡⟨ cong (λ x → (labelB (x !! enumB b))) βp ⟩ labelB (1C !! enumB b) ≡⟨ cong labelB 1C!!i≡i ⟩ labelB (enumB b) ≡⟨ βB b ⟩ b ∎) β : Setoid._≈_ (AS ⇨ AS) (g ⊚ f) id⊚ β {a} {.a} refl = begin ( labelA (p₂ !! (enumB (labelB (p₁ !! enumA a)))) ≡⟨ cong (λ x → labelA (p₂ !! x)) (αB _) ⟩ labelA (p₂ !! (p₁ !! enumA a)) ≡⟨ cong labelA (!!⇒∘̂ _ _ (enumA a)) ⟩ labelA ((p₁ ∘̂ p₂) !! enumA a) ≡⟨ cong (λ x → labelA (x !! enumA a)) αp ⟩ labelA (1C !! enumA a) ≡⟨ cong labelA 1C!!i≡i ⟩ labelA (enumA a) ≡⟨ βA a ⟩ a ∎) bwd' : setoid (CPerm m n) ⟶ ≃S-Setoid A B bwd' = record { _⟨$⟩_ = bwd ; cong = λ { {π} {.π} refl → equivS (λ _ → refl) (λ _ → refl) } } α : Setoid._≈_ CP⇨ (fwd' ⊚ bwd') id⊚ α {cp π πᵒ αp βp} refl = p≡ (trans (finext pf₁) (cauchyext π)) where pf₁ : (j : Fin n) → enumB (labelB (π !! enumA (labelA j))) ≡ π !! j pf₁ j = begin ( enumB (labelB (π !! enumA (labelA j))) ≡⟨ αB _ ⟩ π !! enumA (labelA j) ≡⟨ cong (_!!_ π) (αA _) ⟩ π !! j ∎) β : {x y : AS ≃S BS} → x ≋ y → ((bwd' ⊚ fwd') ⟨$⟩ x) ≋ y β {equiv f g α β} {equiv f₁ g₁ α₁ β₁} (equivS f≡ g≡) = equivS (λ a → trans (pf₁ a) (f≡ a)) (λ b → trans (pf₂ b) (g≡ b)) where pf₁ : ∀ a → labelB (tabulate (λ j → enumB (f ⟨$⟩ labelA j)) !! (enumA a)) ≡ f ⟨$⟩ a pf₁ a = begin ( labelB (tabulate (λ j → enumB (f ⟨$⟩ labelA j)) !! enumA a) ≡⟨ cong labelB (lookup∘tabulate _ (enumA a)) ⟩ labelB (enumB (f ⟨$⟩ labelA (enumA a))) ≡⟨ βB _ ⟩ f ⟨$⟩ labelA (enumA a) ≡⟨ cong (_⟨$⟩_ f) (βA _) ⟩ f ⟨$⟩ a ∎) pf₂ : ∀ b → labelA (tabulate (λ j → enumA (g ⟨$⟩ labelB j)) !! (enumB b)) ≡ g ⟨$⟩ b pf₂ b = begin ( labelA (tabulate (λ j → enumA (g ⟨$⟩ labelB j)) !! enumB b) ≡⟨ cong labelA (lookup∘tabulate _ (enumB b)) ⟩ labelA (enumA (g ⟨$⟩ labelB (enumB b))) ≡⟨ βA _ ⟩ g ⟨$⟩ labelB (enumB b) ≡⟨ cong (_⟨$⟩_ g) (βB _) ⟩ g ⟨$⟩ b ∎ ) -- Start proving some of the transport lemmas. -- Need to do: -- 1. prove that we have a bijective morphism of carriers: done, this is thm2 (fwd is the morphism) -- 2. prove that it preserves: -- a. id (done) -- b. 0 (done) -- c. + (done) -- d. * {-- Is this still important or has it been subsumed by the categorical work ??? Still important, I believe. It will be used in proving the categorical components of CPermCat. open _≃S_ lemma_1a : ∀ {n} {A : Set} → (EA : Enum A n) → f (thm2 EA EA) ⟨$⟩ id≃S ≡ idp lemma_1a (f' , mkqinv g α _) = p≡ (trans (finext α) F.reveal1C) -- this is redundant, as it follows from lemma_1a. lemma_1b : ∀ {n} {A : Set} → (EA : Enum A n) → (g (thm2 EA EA) ⟨$⟩ idp) ≋ id≃S lemma_1b (enumA , mkqinv g _ β) = equivS (λ x → trans (cong g 1C!!i≡i) (β x)) (λ x → trans (cong g 1C!!i≡i) (β x)) lemma2 : f (thm2 0E 0E) ⟨$⟩ 0≃S ≡ 0p lemma2 = p≡ F.reveal0C -- p≡ refl lemma3 : ∀ {n₁ n₂} {A B C D : Set} {EA : Enum A n₁} {EB : Enum B n₁} {EC : Enum C n₂} {ED : Enum D n₂} → (x : A ≃S≡ B) → (y : C ≃S≡ D) → f (thm2 (EA ⊕e EC) (EB ⊕e ED)) ⟨$⟩ (x ⊎≃S y) ≡ (f (thm2 EA EB) ⟨$⟩ x) ⊎p (f (thm2 EC ED) ⟨$⟩ y) lemma3 {n₁} {n₂} {EA = EA} {EB} {EC} {ED} (equiv f₄ g₄ α₄ β₄) (equiv f₅ g₅ α₅ β₅) = p≡ ( begin ( CPerm.π (f (thm2 (EA ⊕e EC) (EB ⊕e ED)) ⟨$⟩ (x ⊎≃S y)) ≡⟨ refl ⟩ -- inline f, fwd and π tabulate {n₁ + n₂} (λ j → enumBD (x⊎y.f ⟨$⟩ qAC.g j)) ≡⟨ tabulate-split {n₁} {n₂} {f = λ j → enumBD (x⊎y.f ⟨$⟩ qAC.g j)} ⟩ tabulate {n₁} (λ j → enumBD (x⊎y.f ⟨$⟩ qAC.g (inject+ n₂ j))) ++V tabulate {n₂} (λ j → enumBD (x⊎y.f ⟨$⟩ qAC.g (raise n₁ j))) ≡⟨ cong₂ _++V_ (finext {n₁} pf₁) (finext pf₂) ⟩ tabulate {n₁} (λ j → inject+ n₂ (tabulate (λ i → enumB (f₄ ⟨$⟩ qA.g i)) !! j)) ++V tabulate {n₂} (λ j → raise n₁ (tabulate (λ i → enumD (f₅ ⟨$⟩ qC.g i)) !! j)) ≡⟨ sym F.reveal⊎c ⟩ -- going up, inline f, fwd, ⊎p and π CPerm.π ((f (thm2 EA EB) ⟨$⟩ x) ⊎p (f (thm2 EC ED) ⟨$⟩ y)) ∎)) where open ≡-Reasoning x = equiv f₄ g₄ α₄ β₄ y = equiv f₅ g₅ α₅ β₅ enumB = proj₁ EB enumD = proj₁ ED enumAC = proj₁ (EA ⊕e EC) module qAC = qinv (proj₂ (EA ⊕e EC)) module qA = qinv (proj₂ EA) module qC = qinv (proj₂ EC) enumBD = proj₁ (EB ⊕e ED) module x⊎y = _≃S_ (x ⊎≃S y) pf₁ : (i : Fin n₁) → enumBD (x⊎y.f ⟨$⟩ qAC.g (inject+ n₂ i)) ≡ inject+ n₂ (tabulate (λ i₁ → enumB (f₄ ⟨$⟩ qA.g i₁)) !! i) pf₁ i = begin ( enumBD (x⊎y.f ⟨$⟩ qAC.g (inject+ n₂ i)) ≡⟨ cong (λ j → enumBD (x⊎y.f ⟨$⟩ j)) (eval-left {eA = EA} {EC} i) ⟩ enumBD (x⊎y.f ⟨$⟩ inj₁ (qA.g i)) ≡⟨ refl ⟩ -- once the inj₁ is exposed, the rest happens by β-reduction inject+ n₂ (enumB (f₄ ⟨$⟩ qA.g i)) ≡⟨ cong (inject+ n₂) (sym (lookup∘tabulate _ i)) ⟩ inject+ n₂ (tabulate (λ j → enumB (f₄ ⟨$⟩ qA.g j)) !! i) ∎) pf₂ : (i : Fin n₂) → enumBD (x⊎y.f ⟨$⟩ qAC.g (raise n₁ i)) ≡ raise n₁ (tabulate (λ i₁ → enumD (f₅ ⟨$⟩ qC.g i₁)) !! i) pf₂ i = begin ( enumBD (x⊎y.f ⟨$⟩ qAC.g (raise n₁ i)) ≡⟨ cong (λ j → enumBD (x⊎y.f ⟨$⟩ j)) (eval-right {eA = EA} {EC} i) ⟩ enumBD (x⊎y.f ⟨$⟩ inj₂ (qC.g i)) ≡⟨ refl ⟩ raise n₁ (enumD (f₅ ⟨$⟩ qC.g i)) ≡⟨ cong (raise n₁) (sym (lookup∘tabulate _ i)) ⟩ raise n₁ (tabulate (λ i₁ → enumD (f₅ ⟨$⟩ qC.g i₁)) !! i) ∎) -}
SSUOS_P6/src/kernel/arch/i386/io.asm
NCNYR/OS_Virtual_Memory
0
172355
<filename>SSUOS_P6/src/kernel/arch/i386/io.asm<gh_stars>0 [SECTION .text] [GLOBAL inb] inb: push ebp mov ebp, esp xor eax, eax mov dx, word[ebp+8] in al, dx pop ebp ret [GLOBAL outb] outb: push ebp mov ebp, esp mov al, byte [ebp+12] mov dx, word [ebp+8] out dx, al pop ebp ret [GLOBAL inl] inl: push ebp mov ebp, esp push edx mov dx, word [ebp+8] xor eax, eax in eax, dx pop edx mov esp, ebp pop ebp ret [GLOBAL outl] outl: push ebp mov ebp, esp push edx push eax mov dx, word [ebp+8] mov eax, dword [ebp+12] out dx, eax pop eax pop edx mov esp, ebp pop ebp ret [GLOBAL iowait] iowait: push ax xor ax, ax out 0x80, al pop ax ret
ls.asm
ansumanpalo/xv6-the_project
0
25753
<reponame>ansumanpalo/xv6-the_project _ls: file format elf32-i386 Disassembly of section .text: 00000000 <fmtname>: #include "user.h" #include "fs.h" char* fmtname(char *path) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 53 push %ebx 4: 83 ec 14 sub $0x14,%esp static char buf[DIRSIZ+1]; char *p; // Find first character after last slash. for(p=path+strlen(path); p >= path && *p != '/'; p--) 7: 83 ec 0c sub $0xc,%esp a: ff 75 08 pushl 0x8(%ebp) d: e8 c9 03 00 00 call 3db <strlen> 12: 83 c4 10 add $0x10,%esp 15: 89 c2 mov %eax,%edx 17: 8b 45 08 mov 0x8(%ebp),%eax 1a: 01 d0 add %edx,%eax 1c: 89 45 f4 mov %eax,-0xc(%ebp) 1f: eb 04 jmp 25 <fmtname+0x25> 21: 83 6d f4 01 subl $0x1,-0xc(%ebp) 25: 8b 45 f4 mov -0xc(%ebp),%eax 28: 3b 45 08 cmp 0x8(%ebp),%eax 2b: 72 0a jb 37 <fmtname+0x37> 2d: 8b 45 f4 mov -0xc(%ebp),%eax 30: 0f b6 00 movzbl (%eax),%eax 33: 3c 2f cmp $0x2f,%al 35: 75 ea jne 21 <fmtname+0x21> ; p++; 37: 83 45 f4 01 addl $0x1,-0xc(%ebp) // Return blank-padded name. if(strlen(p) >= DIRSIZ) 3b: 83 ec 0c sub $0xc,%esp 3e: ff 75 f4 pushl -0xc(%ebp) 41: e8 95 03 00 00 call 3db <strlen> 46: 83 c4 10 add $0x10,%esp 49: 83 f8 0d cmp $0xd,%eax 4c: 76 05 jbe 53 <fmtname+0x53> return p; 4e: 8b 45 f4 mov -0xc(%ebp),%eax 51: eb 60 jmp b3 <fmtname+0xb3> memmove(buf, p, strlen(p)); 53: 83 ec 0c sub $0xc,%esp 56: ff 75 f4 pushl -0xc(%ebp) 59: e8 7d 03 00 00 call 3db <strlen> 5e: 83 c4 10 add $0x10,%esp 61: 83 ec 04 sub $0x4,%esp 64: 50 push %eax 65: ff 75 f4 pushl -0xc(%ebp) 68: 68 80 0e 00 00 push $0xe80 6d: e8 37 05 00 00 call 5a9 <memmove> 72: 83 c4 10 add $0x10,%esp memset(buf+strlen(p), ' ', DIRSIZ-strlen(p)); 75: 83 ec 0c sub $0xc,%esp 78: ff 75 f4 pushl -0xc(%ebp) 7b: e8 5b 03 00 00 call 3db <strlen> 80: 83 c4 10 add $0x10,%esp 83: ba 0e 00 00 00 mov $0xe,%edx 88: 89 d3 mov %edx,%ebx 8a: 29 c3 sub %eax,%ebx 8c: 83 ec 0c sub $0xc,%esp 8f: ff 75 f4 pushl -0xc(%ebp) 92: e8 44 03 00 00 call 3db <strlen> 97: 83 c4 10 add $0x10,%esp 9a: 05 80 0e 00 00 add $0xe80,%eax 9f: 83 ec 04 sub $0x4,%esp a2: 53 push %ebx a3: 6a 20 push $0x20 a5: 50 push %eax a6: e8 57 03 00 00 call 402 <memset> ab: 83 c4 10 add $0x10,%esp return buf; ae: b8 80 0e 00 00 mov $0xe80,%eax } b3: 8b 5d fc mov -0x4(%ebp),%ebx b6: c9 leave b7: c3 ret 000000b8 <ls>: void ls(char *path) { b8: 55 push %ebp b9: 89 e5 mov %esp,%ebp bb: 57 push %edi bc: 56 push %esi bd: 53 push %ebx be: 81 ec 3c 02 00 00 sub $0x23c,%esp char buf[512], *p; int fd; struct dirent de; struct stat st; if((fd = open(path, 0)) < 0){ c4: 83 ec 08 sub $0x8,%esp c7: 6a 00 push $0x0 c9: ff 75 08 pushl 0x8(%ebp) cc: e8 5d 05 00 00 call 62e <open> d1: 83 c4 10 add $0x10,%esp d4: 89 45 e4 mov %eax,-0x1c(%ebp) d7: 83 7d e4 00 cmpl $0x0,-0x1c(%ebp) db: 79 1a jns f7 <ls+0x3f> printf(2, "ls: cannot open %s\n", path); dd: 83 ec 04 sub $0x4,%esp e0: ff 75 08 pushl 0x8(%ebp) e3: 68 3b 0b 00 00 push $0xb3b e8: 6a 02 push $0x2 ea: e8 96 06 00 00 call 785 <printf> ef: 83 c4 10 add $0x10,%esp return; f2: e9 e3 01 00 00 jmp 2da <ls+0x222> } if(fstat(fd, &st) < 0){ f7: 83 ec 08 sub $0x8,%esp fa: 8d 85 bc fd ff ff lea -0x244(%ebp),%eax 100: 50 push %eax 101: ff 75 e4 pushl -0x1c(%ebp) 104: e8 3d 05 00 00 call 646 <fstat> 109: 83 c4 10 add $0x10,%esp 10c: 85 c0 test %eax,%eax 10e: 79 28 jns 138 <ls+0x80> printf(2, "ls: cannot stat %s\n", path); 110: 83 ec 04 sub $0x4,%esp 113: ff 75 08 pushl 0x8(%ebp) 116: 68 4f 0b 00 00 push $0xb4f 11b: 6a 02 push $0x2 11d: e8 63 06 00 00 call 785 <printf> 122: 83 c4 10 add $0x10,%esp close(fd); 125: 83 ec 0c sub $0xc,%esp 128: ff 75 e4 pushl -0x1c(%ebp) 12b: e8 e6 04 00 00 call 616 <close> 130: 83 c4 10 add $0x10,%esp return; 133: e9 a2 01 00 00 jmp 2da <ls+0x222> } switch(st.type){ 138: 0f b7 85 bc fd ff ff movzwl -0x244(%ebp),%eax 13f: 98 cwtl 140: 83 f8 01 cmp $0x1,%eax 143: 74 48 je 18d <ls+0xd5> 145: 83 f8 02 cmp $0x2,%eax 148: 0f 85 7e 01 00 00 jne 2cc <ls+0x214> case T_FILE: printf(1, "%s %d %d %d\n", fmtname(path), st.type, st.ino, st.size); 14e: 8b bd cc fd ff ff mov -0x234(%ebp),%edi 154: 8b b5 c4 fd ff ff mov -0x23c(%ebp),%esi 15a: 0f b7 85 bc fd ff ff movzwl -0x244(%ebp),%eax 161: 0f bf d8 movswl %ax,%ebx 164: 83 ec 0c sub $0xc,%esp 167: ff 75 08 pushl 0x8(%ebp) 16a: e8 91 fe ff ff call 0 <fmtname> 16f: 83 c4 10 add $0x10,%esp 172: 83 ec 08 sub $0x8,%esp 175: 57 push %edi 176: 56 push %esi 177: 53 push %ebx 178: 50 push %eax 179: 68 63 0b 00 00 push $0xb63 17e: 6a 01 push $0x1 180: e8 00 06 00 00 call 785 <printf> 185: 83 c4 20 add $0x20,%esp break; 188: e9 3f 01 00 00 jmp 2cc <ls+0x214> case T_DIR: if(strlen(path) + 1 + DIRSIZ + 1 > sizeof buf){ 18d: 83 ec 0c sub $0xc,%esp 190: ff 75 08 pushl 0x8(%ebp) 193: e8 43 02 00 00 call 3db <strlen> 198: 83 c4 10 add $0x10,%esp 19b: 83 c0 10 add $0x10,%eax 19e: 3d 00 02 00 00 cmp $0x200,%eax 1a3: 76 17 jbe 1bc <ls+0x104> printf(1, "ls: path too long\n"); 1a5: 83 ec 08 sub $0x8,%esp 1a8: 68 70 0b 00 00 push $0xb70 1ad: 6a 01 push $0x1 1af: e8 d1 05 00 00 call 785 <printf> 1b4: 83 c4 10 add $0x10,%esp break; 1b7: e9 10 01 00 00 jmp 2cc <ls+0x214> } strcpy(buf, path); 1bc: 83 ec 08 sub $0x8,%esp 1bf: ff 75 08 pushl 0x8(%ebp) 1c2: 8d 85 e0 fd ff ff lea -0x220(%ebp),%eax 1c8: 50 push %eax 1c9: e8 9e 01 00 00 call 36c <strcpy> 1ce: 83 c4 10 add $0x10,%esp p = buf+strlen(buf); 1d1: 83 ec 0c sub $0xc,%esp 1d4: 8d 85 e0 fd ff ff lea -0x220(%ebp),%eax 1da: 50 push %eax 1db: e8 fb 01 00 00 call 3db <strlen> 1e0: 83 c4 10 add $0x10,%esp 1e3: 89 c2 mov %eax,%edx 1e5: 8d 85 e0 fd ff ff lea -0x220(%ebp),%eax 1eb: 01 d0 add %edx,%eax 1ed: 89 45 e0 mov %eax,-0x20(%ebp) *p++ = '/'; 1f0: 8b 45 e0 mov -0x20(%ebp),%eax 1f3: 8d 50 01 lea 0x1(%eax),%edx 1f6: 89 55 e0 mov %edx,-0x20(%ebp) 1f9: c6 00 2f movb $0x2f,(%eax) while(read(fd, &de, sizeof(de)) == sizeof(de)){ 1fc: e9 aa 00 00 00 jmp 2ab <ls+0x1f3> if(de.inum == 0) 201: 0f b7 85 d0 fd ff ff movzwl -0x230(%ebp),%eax 208: 66 85 c0 test %ax,%ax 20b: 75 05 jne 212 <ls+0x15a> continue; 20d: e9 99 00 00 00 jmp 2ab <ls+0x1f3> memmove(p, de.name, DIRSIZ); 212: 83 ec 04 sub $0x4,%esp 215: 6a 0e push $0xe 217: 8d 85 d0 fd ff ff lea -0x230(%ebp),%eax 21d: 83 c0 02 add $0x2,%eax 220: 50 push %eax 221: ff 75 e0 pushl -0x20(%ebp) 224: e8 80 03 00 00 call 5a9 <memmove> 229: 83 c4 10 add $0x10,%esp p[DIRSIZ] = 0; 22c: 8b 45 e0 mov -0x20(%ebp),%eax 22f: 83 c0 0e add $0xe,%eax 232: c6 00 00 movb $0x0,(%eax) if(stat(buf, &st) < 0){ 235: 83 ec 08 sub $0x8,%esp 238: 8d 85 bc fd ff ff lea -0x244(%ebp),%eax 23e: 50 push %eax 23f: 8d 85 e0 fd ff ff lea -0x220(%ebp),%eax 245: 50 push %eax 246: e8 73 02 00 00 call 4be <stat> 24b: 83 c4 10 add $0x10,%esp 24e: 85 c0 test %eax,%eax 250: 79 1b jns 26d <ls+0x1b5> printf(1, "ls: cannot stat %s\n", buf); 252: 83 ec 04 sub $0x4,%esp 255: 8d 85 e0 fd ff ff lea -0x220(%ebp),%eax 25b: 50 push %eax 25c: 68 4f 0b 00 00 push $0xb4f 261: 6a 01 push $0x1 263: e8 1d 05 00 00 call 785 <printf> 268: 83 c4 10 add $0x10,%esp continue; 26b: eb 3e jmp 2ab <ls+0x1f3> } printf(1, "%s %d %d %d\n", fmtname(buf), st.type, st.ino, st.size); 26d: 8b bd cc fd ff ff mov -0x234(%ebp),%edi 273: 8b b5 c4 fd ff ff mov -0x23c(%ebp),%esi 279: 0f b7 85 bc fd ff ff movzwl -0x244(%ebp),%eax 280: 0f bf d8 movswl %ax,%ebx 283: 83 ec 0c sub $0xc,%esp 286: 8d 85 e0 fd ff ff lea -0x220(%ebp),%eax 28c: 50 push %eax 28d: e8 6e fd ff ff call 0 <fmtname> 292: 83 c4 10 add $0x10,%esp 295: 83 ec 08 sub $0x8,%esp 298: 57 push %edi 299: 56 push %esi 29a: 53 push %ebx 29b: 50 push %eax 29c: 68 63 0b 00 00 push $0xb63 2a1: 6a 01 push $0x1 2a3: e8 dd 04 00 00 call 785 <printf> 2a8: 83 c4 20 add $0x20,%esp break; } strcpy(buf, path); p = buf+strlen(buf); *p++ = '/'; while(read(fd, &de, sizeof(de)) == sizeof(de)){ 2ab: 83 ec 04 sub $0x4,%esp 2ae: 6a 10 push $0x10 2b0: 8d 85 d0 fd ff ff lea -0x230(%ebp),%eax 2b6: 50 push %eax 2b7: ff 75 e4 pushl -0x1c(%ebp) 2ba: e8 47 03 00 00 call 606 <read> 2bf: 83 c4 10 add $0x10,%esp 2c2: 83 f8 10 cmp $0x10,%eax 2c5: 0f 84 36 ff ff ff je 201 <ls+0x149> printf(1, "ls: cannot stat %s\n", buf); continue; } printf(1, "%s %d %d %d\n", fmtname(buf), st.type, st.ino, st.size); } break; 2cb: 90 nop } close(fd); 2cc: 83 ec 0c sub $0xc,%esp 2cf: ff 75 e4 pushl -0x1c(%ebp) 2d2: e8 3f 03 00 00 call 616 <close> 2d7: 83 c4 10 add $0x10,%esp } 2da: 8d 65 f4 lea -0xc(%ebp),%esp 2dd: 5b pop %ebx 2de: 5e pop %esi 2df: 5f pop %edi 2e0: 5d pop %ebp 2e1: c3 ret 000002e2 <main>: int main(int argc, char *argv[]) { 2e2: 8d 4c 24 04 lea 0x4(%esp),%ecx 2e6: 83 e4 f0 and $0xfffffff0,%esp 2e9: ff 71 fc pushl -0x4(%ecx) 2ec: 55 push %ebp 2ed: 89 e5 mov %esp,%ebp 2ef: 53 push %ebx 2f0: 51 push %ecx 2f1: 83 ec 10 sub $0x10,%esp 2f4: 89 cb mov %ecx,%ebx int i; if(argc < 2){ 2f6: 83 3b 01 cmpl $0x1,(%ebx) 2f9: 7f 15 jg 310 <main+0x2e> ls("."); 2fb: 83 ec 0c sub $0xc,%esp 2fe: 68 83 0b 00 00 push $0xb83 303: e8 b0 fd ff ff call b8 <ls> 308: 83 c4 10 add $0x10,%esp exit(); 30b: e8 de 02 00 00 call 5ee <exit> } for(i=1; i<argc; i++) 310: c7 45 f4 01 00 00 00 movl $0x1,-0xc(%ebp) 317: eb 21 jmp 33a <main+0x58> ls(argv[i]); 319: 8b 45 f4 mov -0xc(%ebp),%eax 31c: 8d 14 85 00 00 00 00 lea 0x0(,%eax,4),%edx 323: 8b 43 04 mov 0x4(%ebx),%eax 326: 01 d0 add %edx,%eax 328: 8b 00 mov (%eax),%eax 32a: 83 ec 0c sub $0xc,%esp 32d: 50 push %eax 32e: e8 85 fd ff ff call b8 <ls> 333: 83 c4 10 add $0x10,%esp if(argc < 2){ ls("."); exit(); } for(i=1; i<argc; i++) 336: 83 45 f4 01 addl $0x1,-0xc(%ebp) 33a: 8b 45 f4 mov -0xc(%ebp),%eax 33d: 3b 03 cmp (%ebx),%eax 33f: 7c d8 jl 319 <main+0x37> ls(argv[i]); exit(); 341: e8 a8 02 00 00 call 5ee <exit> 00000346 <stosb>: "cc"); } static inline void stosb(void *addr, int data, int cnt) { 346: 55 push %ebp 347: 89 e5 mov %esp,%ebp 349: 57 push %edi 34a: 53 push %ebx asm volatile("cld; rep stosb" : 34b: 8b 4d 08 mov 0x8(%ebp),%ecx 34e: 8b 55 10 mov 0x10(%ebp),%edx 351: 8b 45 0c mov 0xc(%ebp),%eax 354: 89 cb mov %ecx,%ebx 356: 89 df mov %ebx,%edi 358: 89 d1 mov %edx,%ecx 35a: fc cld 35b: f3 aa rep stos %al,%es:(%edi) 35d: 89 ca mov %ecx,%edx 35f: 89 fb mov %edi,%ebx 361: 89 5d 08 mov %ebx,0x8(%ebp) 364: 89 55 10 mov %edx,0x10(%ebp) "=D" (addr), "=c" (cnt) : "0" (addr), "1" (cnt), "a" (data) : "memory", "cc"); } 367: 90 nop 368: 5b pop %ebx 369: 5f pop %edi 36a: 5d pop %ebp 36b: c3 ret 0000036c <strcpy>: #include "user.h" #include "x86.h" char* strcpy(char *s, char *t) { 36c: 55 push %ebp 36d: 89 e5 mov %esp,%ebp 36f: 83 ec 10 sub $0x10,%esp char *os; os = s; 372: 8b 45 08 mov 0x8(%ebp),%eax 375: 89 45 fc mov %eax,-0x4(%ebp) while((*s++ = *t++) != 0) 378: 90 nop 379: 8b 45 08 mov 0x8(%ebp),%eax 37c: 8d 50 01 lea 0x1(%eax),%edx 37f: 89 55 08 mov %edx,0x8(%ebp) 382: 8b 55 0c mov 0xc(%ebp),%edx 385: 8d 4a 01 lea 0x1(%edx),%ecx 388: 89 4d 0c mov %ecx,0xc(%ebp) 38b: 0f b6 12 movzbl (%edx),%edx 38e: 88 10 mov %dl,(%eax) 390: 0f b6 00 movzbl (%eax),%eax 393: 84 c0 test %al,%al 395: 75 e2 jne 379 <strcpy+0xd> ; return os; 397: 8b 45 fc mov -0x4(%ebp),%eax } 39a: c9 leave 39b: c3 ret 0000039c <strcmp>: int strcmp(const char *p, const char *q) { 39c: 55 push %ebp 39d: 89 e5 mov %esp,%ebp while(*p && *p == *q) 39f: eb 08 jmp 3a9 <strcmp+0xd> p++, q++; 3a1: 83 45 08 01 addl $0x1,0x8(%ebp) 3a5: 83 45 0c 01 addl $0x1,0xc(%ebp) } int strcmp(const char *p, const char *q) { while(*p && *p == *q) 3a9: 8b 45 08 mov 0x8(%ebp),%eax 3ac: 0f b6 00 movzbl (%eax),%eax 3af: 84 c0 test %al,%al 3b1: 74 10 je 3c3 <strcmp+0x27> 3b3: 8b 45 08 mov 0x8(%ebp),%eax 3b6: 0f b6 10 movzbl (%eax),%edx 3b9: 8b 45 0c mov 0xc(%ebp),%eax 3bc: 0f b6 00 movzbl (%eax),%eax 3bf: 38 c2 cmp %al,%dl 3c1: 74 de je 3a1 <strcmp+0x5> p++, q++; return (uchar)*p - (uchar)*q; 3c3: 8b 45 08 mov 0x8(%ebp),%eax 3c6: 0f b6 00 movzbl (%eax),%eax 3c9: 0f b6 d0 movzbl %al,%edx 3cc: 8b 45 0c mov 0xc(%ebp),%eax 3cf: 0f b6 00 movzbl (%eax),%eax 3d2: 0f b6 c0 movzbl %al,%eax 3d5: 29 c2 sub %eax,%edx 3d7: 89 d0 mov %edx,%eax } 3d9: 5d pop %ebp 3da: c3 ret 000003db <strlen>: uint strlen(char *s) { 3db: 55 push %ebp 3dc: 89 e5 mov %esp,%ebp 3de: 83 ec 10 sub $0x10,%esp int n; for(n = 0; s[n]; n++) 3e1: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp) 3e8: eb 04 jmp 3ee <strlen+0x13> 3ea: 83 45 fc 01 addl $0x1,-0x4(%ebp) 3ee: 8b 55 fc mov -0x4(%ebp),%edx 3f1: 8b 45 08 mov 0x8(%ebp),%eax 3f4: 01 d0 add %edx,%eax 3f6: 0f b6 00 movzbl (%eax),%eax 3f9: 84 c0 test %al,%al 3fb: 75 ed jne 3ea <strlen+0xf> ; return n; 3fd: 8b 45 fc mov -0x4(%ebp),%eax } 400: c9 leave 401: c3 ret 00000402 <memset>: void* memset(void *dst, int c, uint n) { 402: 55 push %ebp 403: 89 e5 mov %esp,%ebp stosb(dst, c, n); 405: 8b 45 10 mov 0x10(%ebp),%eax 408: 50 push %eax 409: ff 75 0c pushl 0xc(%ebp) 40c: ff 75 08 pushl 0x8(%ebp) 40f: e8 32 ff ff ff call 346 <stosb> 414: 83 c4 0c add $0xc,%esp return dst; 417: 8b 45 08 mov 0x8(%ebp),%eax } 41a: c9 leave 41b: c3 ret 0000041c <strchr>: char* strchr(const char *s, char c) { 41c: 55 push %ebp 41d: 89 e5 mov %esp,%ebp 41f: 83 ec 04 sub $0x4,%esp 422: 8b 45 0c mov 0xc(%ebp),%eax 425: 88 45 fc mov %al,-0x4(%ebp) for(; *s; s++) 428: eb 14 jmp 43e <strchr+0x22> if(*s == c) 42a: 8b 45 08 mov 0x8(%ebp),%eax 42d: 0f b6 00 movzbl (%eax),%eax 430: 3a 45 fc cmp -0x4(%ebp),%al 433: 75 05 jne 43a <strchr+0x1e> return (char*)s; 435: 8b 45 08 mov 0x8(%ebp),%eax 438: eb 13 jmp 44d <strchr+0x31> } char* strchr(const char *s, char c) { for(; *s; s++) 43a: 83 45 08 01 addl $0x1,0x8(%ebp) 43e: 8b 45 08 mov 0x8(%ebp),%eax 441: 0f b6 00 movzbl (%eax),%eax 444: 84 c0 test %al,%al 446: 75 e2 jne 42a <strchr+0xe> if(*s == c) return (char*)s; return 0; 448: b8 00 00 00 00 mov $0x0,%eax } 44d: c9 leave 44e: c3 ret 0000044f <gets>: char* gets(char *buf, int max) { 44f: 55 push %ebp 450: 89 e5 mov %esp,%ebp 452: 83 ec 18 sub $0x18,%esp int i, cc; char c; for(i=0; i+1 < max; ){ 455: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp) 45c: eb 42 jmp 4a0 <gets+0x51> cc = read(0, &c, 1); 45e: 83 ec 04 sub $0x4,%esp 461: 6a 01 push $0x1 463: 8d 45 ef lea -0x11(%ebp),%eax 466: 50 push %eax 467: 6a 00 push $0x0 469: e8 98 01 00 00 call 606 <read> 46e: 83 c4 10 add $0x10,%esp 471: 89 45 f0 mov %eax,-0x10(%ebp) if(cc < 1) 474: 83 7d f0 00 cmpl $0x0,-0x10(%ebp) 478: 7e 33 jle 4ad <gets+0x5e> break; buf[i++] = c; 47a: 8b 45 f4 mov -0xc(%ebp),%eax 47d: 8d 50 01 lea 0x1(%eax),%edx 480: 89 55 f4 mov %edx,-0xc(%ebp) 483: 89 c2 mov %eax,%edx 485: 8b 45 08 mov 0x8(%ebp),%eax 488: 01 c2 add %eax,%edx 48a: 0f b6 45 ef movzbl -0x11(%ebp),%eax 48e: 88 02 mov %al,(%edx) if(c == '\n' || c == '\r') 490: 0f b6 45 ef movzbl -0x11(%ebp),%eax 494: 3c 0a cmp $0xa,%al 496: 74 16 je 4ae <gets+0x5f> 498: 0f b6 45 ef movzbl -0x11(%ebp),%eax 49c: 3c 0d cmp $0xd,%al 49e: 74 0e je 4ae <gets+0x5f> gets(char *buf, int max) { int i, cc; char c; for(i=0; i+1 < max; ){ 4a0: 8b 45 f4 mov -0xc(%ebp),%eax 4a3: 83 c0 01 add $0x1,%eax 4a6: 3b 45 0c cmp 0xc(%ebp),%eax 4a9: 7c b3 jl 45e <gets+0xf> 4ab: eb 01 jmp 4ae <gets+0x5f> cc = read(0, &c, 1); if(cc < 1) break; 4ad: 90 nop buf[i++] = c; if(c == '\n' || c == '\r') break; } buf[i] = '\0'; 4ae: 8b 55 f4 mov -0xc(%ebp),%edx 4b1: 8b 45 08 mov 0x8(%ebp),%eax 4b4: 01 d0 add %edx,%eax 4b6: c6 00 00 movb $0x0,(%eax) return buf; 4b9: 8b 45 08 mov 0x8(%ebp),%eax } 4bc: c9 leave 4bd: c3 ret 000004be <stat>: int stat(char *n, struct stat *st) { 4be: 55 push %ebp 4bf: 89 e5 mov %esp,%ebp 4c1: 83 ec 18 sub $0x18,%esp int fd; int r; fd = open(n, O_RDONLY); 4c4: 83 ec 08 sub $0x8,%esp 4c7: 6a 00 push $0x0 4c9: ff 75 08 pushl 0x8(%ebp) 4cc: e8 5d 01 00 00 call 62e <open> 4d1: 83 c4 10 add $0x10,%esp 4d4: 89 45 f4 mov %eax,-0xc(%ebp) if(fd < 0) 4d7: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) 4db: 79 07 jns 4e4 <stat+0x26> return -1; 4dd: b8 ff ff ff ff mov $0xffffffff,%eax 4e2: eb 25 jmp 509 <stat+0x4b> r = fstat(fd, st); 4e4: 83 ec 08 sub $0x8,%esp 4e7: ff 75 0c pushl 0xc(%ebp) 4ea: ff 75 f4 pushl -0xc(%ebp) 4ed: e8 54 01 00 00 call 646 <fstat> 4f2: 83 c4 10 add $0x10,%esp 4f5: 89 45 f0 mov %eax,-0x10(%ebp) close(fd); 4f8: 83 ec 0c sub $0xc,%esp 4fb: ff 75 f4 pushl -0xc(%ebp) 4fe: e8 13 01 00 00 call 616 <close> 503: 83 c4 10 add $0x10,%esp return r; 506: 8b 45 f0 mov -0x10(%ebp),%eax } 509: c9 leave 50a: c3 ret 0000050b <atoi>: int atoi(const char *s) { 50b: 55 push %ebp 50c: 89 e5 mov %esp,%ebp 50e: 83 ec 10 sub $0x10,%esp int n; n = 0; 511: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp) while('0' <= *s && *s <= '9') 518: eb 25 jmp 53f <atoi+0x34> n = n*10 + *s++ - '0'; 51a: 8b 55 fc mov -0x4(%ebp),%edx 51d: 89 d0 mov %edx,%eax 51f: c1 e0 02 shl $0x2,%eax 522: 01 d0 add %edx,%eax 524: 01 c0 add %eax,%eax 526: 89 c1 mov %eax,%ecx 528: 8b 45 08 mov 0x8(%ebp),%eax 52b: 8d 50 01 lea 0x1(%eax),%edx 52e: 89 55 08 mov %edx,0x8(%ebp) 531: 0f b6 00 movzbl (%eax),%eax 534: 0f be c0 movsbl %al,%eax 537: 01 c8 add %ecx,%eax 539: 83 e8 30 sub $0x30,%eax 53c: 89 45 fc mov %eax,-0x4(%ebp) atoi(const char *s) { int n; n = 0; while('0' <= *s && *s <= '9') 53f: 8b 45 08 mov 0x8(%ebp),%eax 542: 0f b6 00 movzbl (%eax),%eax 545: 3c 2f cmp $0x2f,%al 547: 7e 0a jle 553 <atoi+0x48> 549: 8b 45 08 mov 0x8(%ebp),%eax 54c: 0f b6 00 movzbl (%eax),%eax 54f: 3c 39 cmp $0x39,%al 551: 7e c7 jle 51a <atoi+0xf> n = n*10 + *s++ - '0'; return n; 553: 8b 45 fc mov -0x4(%ebp),%eax } 556: c9 leave 557: c3 ret 00000558 <itoa>: char* itoa(int val, int base){ 558: 55 push %ebp 559: 89 e5 mov %esp,%ebp 55b: 83 ec 10 sub $0x10,%esp static char buf[32] = {0}; int i = 30; 55e: c7 45 fc 1e 00 00 00 movl $0x1e,-0x4(%ebp) for(; val && i ; --i, val /= base) 565: eb 29 jmp 590 <itoa+0x38> buf[i] = "0123456789abcdef"[val % base]; 567: 8b 45 08 mov 0x8(%ebp),%eax 56a: 99 cltd 56b: f7 7d 0c idivl 0xc(%ebp) 56e: 89 d0 mov %edx,%eax 570: 0f b6 80 85 0b 00 00 movzbl 0xb85(%eax),%eax 577: 8b 55 fc mov -0x4(%ebp),%edx 57a: 81 c2 a0 0e 00 00 add $0xea0,%edx 580: 88 02 mov %al,(%edx) static char buf[32] = {0}; int i = 30; for(; val && i ; --i, val /= base) 582: 83 6d fc 01 subl $0x1,-0x4(%ebp) 586: 8b 45 08 mov 0x8(%ebp),%eax 589: 99 cltd 58a: f7 7d 0c idivl 0xc(%ebp) 58d: 89 45 08 mov %eax,0x8(%ebp) 590: 83 7d 08 00 cmpl $0x0,0x8(%ebp) 594: 74 06 je 59c <itoa+0x44> 596: 83 7d fc 00 cmpl $0x0,-0x4(%ebp) 59a: 75 cb jne 567 <itoa+0xf> buf[i] = "0123456789abcdef"[val % base]; return &buf[i+1]; 59c: 8b 45 fc mov -0x4(%ebp),%eax 59f: 83 c0 01 add $0x1,%eax 5a2: 05 a0 0e 00 00 add $0xea0,%eax } 5a7: c9 leave 5a8: c3 ret 000005a9 <memmove>: void* memmove(void *vdst, void *vsrc, int n) { 5a9: 55 push %ebp 5aa: 89 e5 mov %esp,%ebp 5ac: 83 ec 10 sub $0x10,%esp char *dst, *src; dst = vdst; 5af: 8b 45 08 mov 0x8(%ebp),%eax 5b2: 89 45 fc mov %eax,-0x4(%ebp) src = vsrc; 5b5: 8b 45 0c mov 0xc(%ebp),%eax 5b8: 89 45 f8 mov %eax,-0x8(%ebp) while(n-- > 0) 5bb: eb 17 jmp 5d4 <memmove+0x2b> *dst++ = *src++; 5bd: 8b 45 fc mov -0x4(%ebp),%eax 5c0: 8d 50 01 lea 0x1(%eax),%edx 5c3: 89 55 fc mov %edx,-0x4(%ebp) 5c6: 8b 55 f8 mov -0x8(%ebp),%edx 5c9: 8d 4a 01 lea 0x1(%edx),%ecx 5cc: 89 4d f8 mov %ecx,-0x8(%ebp) 5cf: 0f b6 12 movzbl (%edx),%edx 5d2: 88 10 mov %dl,(%eax) { char *dst, *src; dst = vdst; src = vsrc; while(n-- > 0) 5d4: 8b 45 10 mov 0x10(%ebp),%eax 5d7: 8d 50 ff lea -0x1(%eax),%edx 5da: 89 55 10 mov %edx,0x10(%ebp) 5dd: 85 c0 test %eax,%eax 5df: 7f dc jg 5bd <memmove+0x14> *dst++ = *src++; return vdst; 5e1: 8b 45 08 mov 0x8(%ebp),%eax } 5e4: c9 leave 5e5: c3 ret 000005e6 <fork>: name: \ movl $SYS_ ## name, %eax; \ int $T_SYSCALL; \ ret SYSCALL(fork) 5e6: b8 01 00 00 00 mov $0x1,%eax 5eb: cd 40 int $0x40 5ed: c3 ret 000005ee <exit>: SYSCALL(exit) 5ee: b8 02 00 00 00 mov $0x2,%eax 5f3: cd 40 int $0x40 5f5: c3 ret 000005f6 <wait>: SYSCALL(wait) 5f6: b8 03 00 00 00 mov $0x3,%eax 5fb: cd 40 int $0x40 5fd: c3 ret 000005fe <pipe>: SYSCALL(pipe) 5fe: b8 04 00 00 00 mov $0x4,%eax 603: cd 40 int $0x40 605: c3 ret 00000606 <read>: SYSCALL(read) 606: b8 05 00 00 00 mov $0x5,%eax 60b: cd 40 int $0x40 60d: c3 ret 0000060e <write>: SYSCALL(write) 60e: b8 10 00 00 00 mov $0x10,%eax 613: cd 40 int $0x40 615: c3 ret 00000616 <close>: SYSCALL(close) 616: b8 15 00 00 00 mov $0x15,%eax 61b: cd 40 int $0x40 61d: c3 ret 0000061e <kill>: SYSCALL(kill) 61e: b8 06 00 00 00 mov $0x6,%eax 623: cd 40 int $0x40 625: c3 ret 00000626 <exec>: SYSCALL(exec) 626: b8 07 00 00 00 mov $0x7,%eax 62b: cd 40 int $0x40 62d: c3 ret 0000062e <open>: SYSCALL(open) 62e: b8 0f 00 00 00 mov $0xf,%eax 633: cd 40 int $0x40 635: c3 ret 00000636 <mknod>: SYSCALL(mknod) 636: b8 11 00 00 00 mov $0x11,%eax 63b: cd 40 int $0x40 63d: c3 ret 0000063e <unlink>: SYSCALL(unlink) 63e: b8 12 00 00 00 mov $0x12,%eax 643: cd 40 int $0x40 645: c3 ret 00000646 <fstat>: SYSCALL(fstat) 646: b8 08 00 00 00 mov $0x8,%eax 64b: cd 40 int $0x40 64d: c3 ret 0000064e <link>: SYSCALL(link) 64e: b8 13 00 00 00 mov $0x13,%eax 653: cd 40 int $0x40 655: c3 ret 00000656 <mkdir>: SYSCALL(mkdir) 656: b8 14 00 00 00 mov $0x14,%eax 65b: cd 40 int $0x40 65d: c3 ret 0000065e <chdir>: SYSCALL(chdir) 65e: b8 09 00 00 00 mov $0x9,%eax 663: cd 40 int $0x40 665: c3 ret 00000666 <dup>: SYSCALL(dup) 666: b8 0a 00 00 00 mov $0xa,%eax 66b: cd 40 int $0x40 66d: c3 ret 0000066e <getpid>: SYSCALL(getpid) 66e: b8 0b 00 00 00 mov $0xb,%eax 673: cd 40 int $0x40 675: c3 ret 00000676 <sbrk>: SYSCALL(sbrk) 676: b8 0c 00 00 00 mov $0xc,%eax 67b: cd 40 int $0x40 67d: c3 ret 0000067e <sleep>: SYSCALL(sleep) 67e: b8 0d 00 00 00 mov $0xd,%eax 683: cd 40 int $0x40 685: c3 ret 00000686 <uptime>: SYSCALL(uptime) 686: b8 0e 00 00 00 mov $0xe,%eax 68b: cd 40 int $0x40 68d: c3 ret 0000068e <randomX>: SYSCALL(randomX) 68e: b8 16 00 00 00 mov $0x16,%eax 693: cd 40 int $0x40 695: c3 ret 00000696 <setSeedX>: SYSCALL(setSeedX) 696: b8 17 00 00 00 mov $0x17,%eax 69b: cd 40 int $0x40 69d: c3 ret 0000069e <uniformR>: SYSCALL(uniformR) 69e: b8 18 00 00 00 mov $0x18,%eax 6a3: cd 40 int $0x40 6a5: c3 ret 000006a6 <setdeadline>: 6a6: b8 19 00 00 00 mov $0x19,%eax 6ab: cd 40 int $0x40 6ad: c3 ret 000006ae <putc>: #include "stat.h" #include "user.h" static void putc(int fd, char c) { 6ae: 55 push %ebp 6af: 89 e5 mov %esp,%ebp 6b1: 83 ec 18 sub $0x18,%esp 6b4: 8b 45 0c mov 0xc(%ebp),%eax 6b7: 88 45 f4 mov %al,-0xc(%ebp) write(fd, &c, 1); 6ba: 83 ec 04 sub $0x4,%esp 6bd: 6a 01 push $0x1 6bf: 8d 45 f4 lea -0xc(%ebp),%eax 6c2: 50 push %eax 6c3: ff 75 08 pushl 0x8(%ebp) 6c6: e8 43 ff ff ff call 60e <write> 6cb: 83 c4 10 add $0x10,%esp } 6ce: 90 nop 6cf: c9 leave 6d0: c3 ret 000006d1 <printint>: static void printint(int fd, int xx, int base, int sgn) { 6d1: 55 push %ebp 6d2: 89 e5 mov %esp,%ebp 6d4: 53 push %ebx 6d5: 83 ec 24 sub $0x24,%esp static char digits[] = "0123456789ABCDEF"; char buf[16]; int i, neg; uint x; neg = 0; 6d8: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp) if(sgn && xx < 0){ 6df: 83 7d 14 00 cmpl $0x0,0x14(%ebp) 6e3: 74 17 je 6fc <printint+0x2b> 6e5: 83 7d 0c 00 cmpl $0x0,0xc(%ebp) 6e9: 79 11 jns 6fc <printint+0x2b> neg = 1; 6eb: c7 45 f0 01 00 00 00 movl $0x1,-0x10(%ebp) x = -xx; 6f2: 8b 45 0c mov 0xc(%ebp),%eax 6f5: f7 d8 neg %eax 6f7: 89 45 ec mov %eax,-0x14(%ebp) 6fa: eb 06 jmp 702 <printint+0x31> } else { x = xx; 6fc: 8b 45 0c mov 0xc(%ebp),%eax 6ff: 89 45 ec mov %eax,-0x14(%ebp) } i = 0; 702: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp) do{ buf[i++] = digits[x % base]; 709: 8b 4d f4 mov -0xc(%ebp),%ecx 70c: 8d 41 01 lea 0x1(%ecx),%eax 70f: 89 45 f4 mov %eax,-0xc(%ebp) 712: 8b 5d 10 mov 0x10(%ebp),%ebx 715: 8b 45 ec mov -0x14(%ebp),%eax 718: ba 00 00 00 00 mov $0x0,%edx 71d: f7 f3 div %ebx 71f: 89 d0 mov %edx,%eax 721: 0f b6 80 60 0e 00 00 movzbl 0xe60(%eax),%eax 728: 88 44 0d dc mov %al,-0x24(%ebp,%ecx,1) }while((x /= base) != 0); 72c: 8b 5d 10 mov 0x10(%ebp),%ebx 72f: 8b 45 ec mov -0x14(%ebp),%eax 732: ba 00 00 00 00 mov $0x0,%edx 737: f7 f3 div %ebx 739: 89 45 ec mov %eax,-0x14(%ebp) 73c: 83 7d ec 00 cmpl $0x0,-0x14(%ebp) 740: 75 c7 jne 709 <printint+0x38> if(neg) 742: 83 7d f0 00 cmpl $0x0,-0x10(%ebp) 746: 74 2d je 775 <printint+0xa4> buf[i++] = '-'; 748: 8b 45 f4 mov -0xc(%ebp),%eax 74b: 8d 50 01 lea 0x1(%eax),%edx 74e: 89 55 f4 mov %edx,-0xc(%ebp) 751: c6 44 05 dc 2d movb $0x2d,-0x24(%ebp,%eax,1) while(--i >= 0) 756: eb 1d jmp 775 <printint+0xa4> putc(fd, buf[i]); 758: 8d 55 dc lea -0x24(%ebp),%edx 75b: 8b 45 f4 mov -0xc(%ebp),%eax 75e: 01 d0 add %edx,%eax 760: 0f b6 00 movzbl (%eax),%eax 763: 0f be c0 movsbl %al,%eax 766: 83 ec 08 sub $0x8,%esp 769: 50 push %eax 76a: ff 75 08 pushl 0x8(%ebp) 76d: e8 3c ff ff ff call 6ae <putc> 772: 83 c4 10 add $0x10,%esp buf[i++] = digits[x % base]; }while((x /= base) != 0); if(neg) buf[i++] = '-'; while(--i >= 0) 775: 83 6d f4 01 subl $0x1,-0xc(%ebp) 779: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) 77d: 79 d9 jns 758 <printint+0x87> putc(fd, buf[i]); } 77f: 90 nop 780: 8b 5d fc mov -0x4(%ebp),%ebx 783: c9 leave 784: c3 ret 00000785 <printf>: // Print to the given fd. Only understands %d, %x, %p, %s. void printf(int fd, char *fmt, ...) { 785: 55 push %ebp 786: 89 e5 mov %esp,%ebp 788: 83 ec 28 sub $0x28,%esp char *s; int c, i, state; uint *ap; state = 0; 78b: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp) ap = (uint*)(void*)&fmt + 1; 792: 8d 45 0c lea 0xc(%ebp),%eax 795: 83 c0 04 add $0x4,%eax 798: 89 45 e8 mov %eax,-0x18(%ebp) for(i = 0; fmt[i]; i++){ 79b: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp) 7a2: e9 59 01 00 00 jmp 900 <printf+0x17b> c = fmt[i] & 0xff; 7a7: 8b 55 0c mov 0xc(%ebp),%edx 7aa: 8b 45 f0 mov -0x10(%ebp),%eax 7ad: 01 d0 add %edx,%eax 7af: 0f b6 00 movzbl (%eax),%eax 7b2: 0f be c0 movsbl %al,%eax 7b5: 25 ff 00 00 00 and $0xff,%eax 7ba: 89 45 e4 mov %eax,-0x1c(%ebp) if(state == 0){ 7bd: 83 7d ec 00 cmpl $0x0,-0x14(%ebp) 7c1: 75 2c jne 7ef <printf+0x6a> if(c == '%'){ 7c3: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp) 7c7: 75 0c jne 7d5 <printf+0x50> state = '%'; 7c9: c7 45 ec 25 00 00 00 movl $0x25,-0x14(%ebp) 7d0: e9 27 01 00 00 jmp 8fc <printf+0x177> } else { putc(fd, c); 7d5: 8b 45 e4 mov -0x1c(%ebp),%eax 7d8: 0f be c0 movsbl %al,%eax 7db: 83 ec 08 sub $0x8,%esp 7de: 50 push %eax 7df: ff 75 08 pushl 0x8(%ebp) 7e2: e8 c7 fe ff ff call 6ae <putc> 7e7: 83 c4 10 add $0x10,%esp 7ea: e9 0d 01 00 00 jmp 8fc <printf+0x177> } } else if(state == '%'){ 7ef: 83 7d ec 25 cmpl $0x25,-0x14(%ebp) 7f3: 0f 85 03 01 00 00 jne 8fc <printf+0x177> if(c == 'd'){ 7f9: 83 7d e4 64 cmpl $0x64,-0x1c(%ebp) 7fd: 75 1e jne 81d <printf+0x98> printint(fd, *ap, 10, 1); 7ff: 8b 45 e8 mov -0x18(%ebp),%eax 802: 8b 00 mov (%eax),%eax 804: 6a 01 push $0x1 806: 6a 0a push $0xa 808: 50 push %eax 809: ff 75 08 pushl 0x8(%ebp) 80c: e8 c0 fe ff ff call 6d1 <printint> 811: 83 c4 10 add $0x10,%esp ap++; 814: 83 45 e8 04 addl $0x4,-0x18(%ebp) 818: e9 d8 00 00 00 jmp 8f5 <printf+0x170> } else if(c == 'x' || c == 'p'){ 81d: 83 7d e4 78 cmpl $0x78,-0x1c(%ebp) 821: 74 06 je 829 <printf+0xa4> 823: 83 7d e4 70 cmpl $0x70,-0x1c(%ebp) 827: 75 1e jne 847 <printf+0xc2> printint(fd, *ap, 16, 0); 829: 8b 45 e8 mov -0x18(%ebp),%eax 82c: 8b 00 mov (%eax),%eax 82e: 6a 00 push $0x0 830: 6a 10 push $0x10 832: 50 push %eax 833: ff 75 08 pushl 0x8(%ebp) 836: e8 96 fe ff ff call 6d1 <printint> 83b: 83 c4 10 add $0x10,%esp ap++; 83e: 83 45 e8 04 addl $0x4,-0x18(%ebp) 842: e9 ae 00 00 00 jmp 8f5 <printf+0x170> } else if(c == 's'){ 847: 83 7d e4 73 cmpl $0x73,-0x1c(%ebp) 84b: 75 43 jne 890 <printf+0x10b> s = (char*)*ap; 84d: 8b 45 e8 mov -0x18(%ebp),%eax 850: 8b 00 mov (%eax),%eax 852: 89 45 f4 mov %eax,-0xc(%ebp) ap++; 855: 83 45 e8 04 addl $0x4,-0x18(%ebp) if(s == 0) 859: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) 85d: 75 25 jne 884 <printf+0xff> s = "(null)"; 85f: c7 45 f4 96 0b 00 00 movl $0xb96,-0xc(%ebp) while(*s != 0){ 866: eb 1c jmp 884 <printf+0xff> putc(fd, *s); 868: 8b 45 f4 mov -0xc(%ebp),%eax 86b: 0f b6 00 movzbl (%eax),%eax 86e: 0f be c0 movsbl %al,%eax 871: 83 ec 08 sub $0x8,%esp 874: 50 push %eax 875: ff 75 08 pushl 0x8(%ebp) 878: e8 31 fe ff ff call 6ae <putc> 87d: 83 c4 10 add $0x10,%esp s++; 880: 83 45 f4 01 addl $0x1,-0xc(%ebp) } else if(c == 's'){ s = (char*)*ap; ap++; if(s == 0) s = "(null)"; while(*s != 0){ 884: 8b 45 f4 mov -0xc(%ebp),%eax 887: 0f b6 00 movzbl (%eax),%eax 88a: 84 c0 test %al,%al 88c: 75 da jne 868 <printf+0xe3> 88e: eb 65 jmp 8f5 <printf+0x170> putc(fd, *s); s++; } } else if(c == 'c'){ 890: 83 7d e4 63 cmpl $0x63,-0x1c(%ebp) 894: 75 1d jne 8b3 <printf+0x12e> putc(fd, *ap); 896: 8b 45 e8 mov -0x18(%ebp),%eax 899: 8b 00 mov (%eax),%eax 89b: 0f be c0 movsbl %al,%eax 89e: 83 ec 08 sub $0x8,%esp 8a1: 50 push %eax 8a2: ff 75 08 pushl 0x8(%ebp) 8a5: e8 04 fe ff ff call 6ae <putc> 8aa: 83 c4 10 add $0x10,%esp ap++; 8ad: 83 45 e8 04 addl $0x4,-0x18(%ebp) 8b1: eb 42 jmp 8f5 <printf+0x170> } else if(c == '%'){ 8b3: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp) 8b7: 75 17 jne 8d0 <printf+0x14b> putc(fd, c); 8b9: 8b 45 e4 mov -0x1c(%ebp),%eax 8bc: 0f be c0 movsbl %al,%eax 8bf: 83 ec 08 sub $0x8,%esp 8c2: 50 push %eax 8c3: ff 75 08 pushl 0x8(%ebp) 8c6: e8 e3 fd ff ff call 6ae <putc> 8cb: 83 c4 10 add $0x10,%esp 8ce: eb 25 jmp 8f5 <printf+0x170> } else { // Unknown % sequence. Print it to draw attention. putc(fd, '%'); 8d0: 83 ec 08 sub $0x8,%esp 8d3: 6a 25 push $0x25 8d5: ff 75 08 pushl 0x8(%ebp) 8d8: e8 d1 fd ff ff call 6ae <putc> 8dd: 83 c4 10 add $0x10,%esp putc(fd, c); 8e0: 8b 45 e4 mov -0x1c(%ebp),%eax 8e3: 0f be c0 movsbl %al,%eax 8e6: 83 ec 08 sub $0x8,%esp 8e9: 50 push %eax 8ea: ff 75 08 pushl 0x8(%ebp) 8ed: e8 bc fd ff ff call 6ae <putc> 8f2: 83 c4 10 add $0x10,%esp } state = 0; 8f5: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp) int c, i, state; uint *ap; state = 0; ap = (uint*)(void*)&fmt + 1; for(i = 0; fmt[i]; i++){ 8fc: 83 45 f0 01 addl $0x1,-0x10(%ebp) 900: 8b 55 0c mov 0xc(%ebp),%edx 903: 8b 45 f0 mov -0x10(%ebp),%eax 906: 01 d0 add %edx,%eax 908: 0f b6 00 movzbl (%eax),%eax 90b: 84 c0 test %al,%al 90d: 0f 85 94 fe ff ff jne 7a7 <printf+0x22> putc(fd, c); } state = 0; } } } 913: 90 nop 914: c9 leave 915: c3 ret 00000916 <free>: static Header base; static Header *freep; void free(void *ap) { 916: 55 push %ebp 917: 89 e5 mov %esp,%ebp 919: 83 ec 10 sub $0x10,%esp Header *bp, *p; bp = (Header*)ap - 1; 91c: 8b 45 08 mov 0x8(%ebp),%eax 91f: 83 e8 08 sub $0x8,%eax 922: 89 45 f8 mov %eax,-0x8(%ebp) for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr) 925: a1 c8 0e 00 00 mov 0xec8,%eax 92a: 89 45 fc mov %eax,-0x4(%ebp) 92d: eb 24 jmp 953 <free+0x3d> if(p >= p->s.ptr && (bp > p || bp < p->s.ptr)) 92f: 8b 45 fc mov -0x4(%ebp),%eax 932: 8b 00 mov (%eax),%eax 934: 3b 45 fc cmp -0x4(%ebp),%eax 937: 77 12 ja 94b <free+0x35> 939: 8b 45 f8 mov -0x8(%ebp),%eax 93c: 3b 45 fc cmp -0x4(%ebp),%eax 93f: 77 24 ja 965 <free+0x4f> 941: 8b 45 fc mov -0x4(%ebp),%eax 944: 8b 00 mov (%eax),%eax 946: 3b 45 f8 cmp -0x8(%ebp),%eax 949: 77 1a ja 965 <free+0x4f> free(void *ap) { Header *bp, *p; bp = (Header*)ap - 1; for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr) 94b: 8b 45 fc mov -0x4(%ebp),%eax 94e: 8b 00 mov (%eax),%eax 950: 89 45 fc mov %eax,-0x4(%ebp) 953: 8b 45 f8 mov -0x8(%ebp),%eax 956: 3b 45 fc cmp -0x4(%ebp),%eax 959: 76 d4 jbe 92f <free+0x19> 95b: 8b 45 fc mov -0x4(%ebp),%eax 95e: 8b 00 mov (%eax),%eax 960: 3b 45 f8 cmp -0x8(%ebp),%eax 963: 76 ca jbe 92f <free+0x19> if(p >= p->s.ptr && (bp > p || bp < p->s.ptr)) break; if(bp + bp->s.size == p->s.ptr){ 965: 8b 45 f8 mov -0x8(%ebp),%eax 968: 8b 40 04 mov 0x4(%eax),%eax 96b: 8d 14 c5 00 00 00 00 lea 0x0(,%eax,8),%edx 972: 8b 45 f8 mov -0x8(%ebp),%eax 975: 01 c2 add %eax,%edx 977: 8b 45 fc mov -0x4(%ebp),%eax 97a: 8b 00 mov (%eax),%eax 97c: 39 c2 cmp %eax,%edx 97e: 75 24 jne 9a4 <free+0x8e> bp->s.size += p->s.ptr->s.size; 980: 8b 45 f8 mov -0x8(%ebp),%eax 983: 8b 50 04 mov 0x4(%eax),%edx 986: 8b 45 fc mov -0x4(%ebp),%eax 989: 8b 00 mov (%eax),%eax 98b: 8b 40 04 mov 0x4(%eax),%eax 98e: 01 c2 add %eax,%edx 990: 8b 45 f8 mov -0x8(%ebp),%eax 993: 89 50 04 mov %edx,0x4(%eax) bp->s.ptr = p->s.ptr->s.ptr; 996: 8b 45 fc mov -0x4(%ebp),%eax 999: 8b 00 mov (%eax),%eax 99b: 8b 10 mov (%eax),%edx 99d: 8b 45 f8 mov -0x8(%ebp),%eax 9a0: 89 10 mov %edx,(%eax) 9a2: eb 0a jmp 9ae <free+0x98> } else bp->s.ptr = p->s.ptr; 9a4: 8b 45 fc mov -0x4(%ebp),%eax 9a7: 8b 10 mov (%eax),%edx 9a9: 8b 45 f8 mov -0x8(%ebp),%eax 9ac: 89 10 mov %edx,(%eax) if(p + p->s.size == bp){ 9ae: 8b 45 fc mov -0x4(%ebp),%eax 9b1: 8b 40 04 mov 0x4(%eax),%eax 9b4: 8d 14 c5 00 00 00 00 lea 0x0(,%eax,8),%edx 9bb: 8b 45 fc mov -0x4(%ebp),%eax 9be: 01 d0 add %edx,%eax 9c0: 3b 45 f8 cmp -0x8(%ebp),%eax 9c3: 75 20 jne 9e5 <free+0xcf> p->s.size += bp->s.size; 9c5: 8b 45 fc mov -0x4(%ebp),%eax 9c8: 8b 50 04 mov 0x4(%eax),%edx 9cb: 8b 45 f8 mov -0x8(%ebp),%eax 9ce: 8b 40 04 mov 0x4(%eax),%eax 9d1: 01 c2 add %eax,%edx 9d3: 8b 45 fc mov -0x4(%ebp),%eax 9d6: 89 50 04 mov %edx,0x4(%eax) p->s.ptr = bp->s.ptr; 9d9: 8b 45 f8 mov -0x8(%ebp),%eax 9dc: 8b 10 mov (%eax),%edx 9de: 8b 45 fc mov -0x4(%ebp),%eax 9e1: 89 10 mov %edx,(%eax) 9e3: eb 08 jmp 9ed <free+0xd7> } else p->s.ptr = bp; 9e5: 8b 45 fc mov -0x4(%ebp),%eax 9e8: 8b 55 f8 mov -0x8(%ebp),%edx 9eb: 89 10 mov %edx,(%eax) freep = p; 9ed: 8b 45 fc mov -0x4(%ebp),%eax 9f0: a3 c8 0e 00 00 mov %eax,0xec8 } 9f5: 90 nop 9f6: c9 leave 9f7: c3 ret 000009f8 <morecore>: static Header* morecore(uint nu) { 9f8: 55 push %ebp 9f9: 89 e5 mov %esp,%ebp 9fb: 83 ec 18 sub $0x18,%esp char *p; Header *hp; if(nu < 4096) 9fe: 81 7d 08 ff 0f 00 00 cmpl $0xfff,0x8(%ebp) a05: 77 07 ja a0e <morecore+0x16> nu = 4096; a07: c7 45 08 00 10 00 00 movl $0x1000,0x8(%ebp) p = sbrk(nu * sizeof(Header)); a0e: 8b 45 08 mov 0x8(%ebp),%eax a11: c1 e0 03 shl $0x3,%eax a14: 83 ec 0c sub $0xc,%esp a17: 50 push %eax a18: e8 59 fc ff ff call 676 <sbrk> a1d: 83 c4 10 add $0x10,%esp a20: 89 45 f4 mov %eax,-0xc(%ebp) if(p == (char*)-1) a23: 83 7d f4 ff cmpl $0xffffffff,-0xc(%ebp) a27: 75 07 jne a30 <morecore+0x38> return 0; a29: b8 00 00 00 00 mov $0x0,%eax a2e: eb 26 jmp a56 <morecore+0x5e> hp = (Header*)p; a30: 8b 45 f4 mov -0xc(%ebp),%eax a33: 89 45 f0 mov %eax,-0x10(%ebp) hp->s.size = nu; a36: 8b 45 f0 mov -0x10(%ebp),%eax a39: 8b 55 08 mov 0x8(%ebp),%edx a3c: 89 50 04 mov %edx,0x4(%eax) free((void*)(hp + 1)); a3f: 8b 45 f0 mov -0x10(%ebp),%eax a42: 83 c0 08 add $0x8,%eax a45: 83 ec 0c sub $0xc,%esp a48: 50 push %eax a49: e8 c8 fe ff ff call 916 <free> a4e: 83 c4 10 add $0x10,%esp return freep; a51: a1 c8 0e 00 00 mov 0xec8,%eax } a56: c9 leave a57: c3 ret 00000a58 <malloc>: void* malloc(uint nbytes) { a58: 55 push %ebp a59: 89 e5 mov %esp,%ebp a5b: 83 ec 18 sub $0x18,%esp Header *p, *prevp; uint nunits; nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1; a5e: 8b 45 08 mov 0x8(%ebp),%eax a61: 83 c0 07 add $0x7,%eax a64: c1 e8 03 shr $0x3,%eax a67: 83 c0 01 add $0x1,%eax a6a: 89 45 ec mov %eax,-0x14(%ebp) if((prevp = freep) == 0){ a6d: a1 c8 0e 00 00 mov 0xec8,%eax a72: 89 45 f0 mov %eax,-0x10(%ebp) a75: 83 7d f0 00 cmpl $0x0,-0x10(%ebp) a79: 75 23 jne a9e <malloc+0x46> base.s.ptr = freep = prevp = &base; a7b: c7 45 f0 c0 0e 00 00 movl $0xec0,-0x10(%ebp) a82: 8b 45 f0 mov -0x10(%ebp),%eax a85: a3 c8 0e 00 00 mov %eax,0xec8 a8a: a1 c8 0e 00 00 mov 0xec8,%eax a8f: a3 c0 0e 00 00 mov %eax,0xec0 base.s.size = 0; a94: c7 05 c4 0e 00 00 00 movl $0x0,0xec4 a9b: 00 00 00 } for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){ a9e: 8b 45 f0 mov -0x10(%ebp),%eax aa1: 8b 00 mov (%eax),%eax aa3: 89 45 f4 mov %eax,-0xc(%ebp) if(p->s.size >= nunits){ aa6: 8b 45 f4 mov -0xc(%ebp),%eax aa9: 8b 40 04 mov 0x4(%eax),%eax aac: 3b 45 ec cmp -0x14(%ebp),%eax aaf: 72 4d jb afe <malloc+0xa6> if(p->s.size == nunits) ab1: 8b 45 f4 mov -0xc(%ebp),%eax ab4: 8b 40 04 mov 0x4(%eax),%eax ab7: 3b 45 ec cmp -0x14(%ebp),%eax aba: 75 0c jne ac8 <malloc+0x70> prevp->s.ptr = p->s.ptr; abc: 8b 45 f4 mov -0xc(%ebp),%eax abf: 8b 10 mov (%eax),%edx ac1: 8b 45 f0 mov -0x10(%ebp),%eax ac4: 89 10 mov %edx,(%eax) ac6: eb 26 jmp aee <malloc+0x96> else { p->s.size -= nunits; ac8: 8b 45 f4 mov -0xc(%ebp),%eax acb: 8b 40 04 mov 0x4(%eax),%eax ace: 2b 45 ec sub -0x14(%ebp),%eax ad1: 89 c2 mov %eax,%edx ad3: 8b 45 f4 mov -0xc(%ebp),%eax ad6: 89 50 04 mov %edx,0x4(%eax) p += p->s.size; ad9: 8b 45 f4 mov -0xc(%ebp),%eax adc: 8b 40 04 mov 0x4(%eax),%eax adf: c1 e0 03 shl $0x3,%eax ae2: 01 45 f4 add %eax,-0xc(%ebp) p->s.size = nunits; ae5: 8b 45 f4 mov -0xc(%ebp),%eax ae8: 8b 55 ec mov -0x14(%ebp),%edx aeb: 89 50 04 mov %edx,0x4(%eax) } freep = prevp; aee: 8b 45 f0 mov -0x10(%ebp),%eax af1: a3 c8 0e 00 00 mov %eax,0xec8 return (void*)(p + 1); af6: 8b 45 f4 mov -0xc(%ebp),%eax af9: 83 c0 08 add $0x8,%eax afc: eb 3b jmp b39 <malloc+0xe1> } if(p == freep) afe: a1 c8 0e 00 00 mov 0xec8,%eax b03: 39 45 f4 cmp %eax,-0xc(%ebp) b06: 75 1e jne b26 <malloc+0xce> if((p = morecore(nunits)) == 0) b08: 83 ec 0c sub $0xc,%esp b0b: ff 75 ec pushl -0x14(%ebp) b0e: e8 e5 fe ff ff call 9f8 <morecore> b13: 83 c4 10 add $0x10,%esp b16: 89 45 f4 mov %eax,-0xc(%ebp) b19: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) b1d: 75 07 jne b26 <malloc+0xce> return 0; b1f: b8 00 00 00 00 mov $0x0,%eax b24: eb 13 jmp b39 <malloc+0xe1> nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1; if((prevp = freep) == 0){ base.s.ptr = freep = prevp = &base; base.s.size = 0; } for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){ b26: 8b 45 f4 mov -0xc(%ebp),%eax b29: 89 45 f0 mov %eax,-0x10(%ebp) b2c: 8b 45 f4 mov -0xc(%ebp),%eax b2f: 8b 00 mov (%eax),%eax b31: 89 45 f4 mov %eax,-0xc(%ebp) return (void*)(p + 1); } if(p == freep) if((p = morecore(nunits)) == 0) return 0; } b34: e9 6d ff ff ff jmp aa6 <malloc+0x4e> } b39: c9 leave b3a: c3 ret
arch/RISC-V/SiFive/drivers/pwm0/sifive-pwm.ads
rocher/Ada_Drivers_Library
192
14521
------------------------------------------------------------------------------ -- -- -- Copyright (C) 2018, AdaCore -- -- -- -- 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. -- -- 3. 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. -- -- -- ------------------------------------------------------------------------------ with HAL; use HAL; private with System; package SiFive.PWM is type Internal_PWM is limited private; type PWM_Device (Periph : not null access Internal_PWM) is limited private; subtype Count_Value is UInt31; function Count (This : PWM_Device) return Count_Value; procedure Set_Count (This : in out PWM_Device; Value : Count_Value); subtype Scaled_Value is UInt16; function Scaled_Counter (This : PWM_Device) return Scaled_Value; -- Enable -- procedure Enable_Continous (This : in out PWM_Device); procedure Enable_One_Shot (This : in out PWM_Device); procedure Disable (This : in out PWM_Device); -- Configuration -- procedure Configure (This : in out PWM_Device; Scale : UInt4; Sticky : Boolean; Reset_To_Zero : Boolean; Deglitch : Boolean); -- Comparators -- subtype Comparator_ID is Natural range 0 .. 3; procedure Configure (This : in out PWM_Device; ID : Comparator_ID; Compare_Center : Boolean; Compare_Gang : Boolean); -- Compare Value -- subtype Compare_Value is UInt16; procedure Set_Compare (This : in out PWM_Device; ID : Comparator_ID; Value : Compare_Value); function Compare (This : PWM_Device; ID : Comparator_ID) return Compare_Value; -- Interrupts -- function Interrupt_Pending (This : PWM_Device; ID : Comparator_ID) return Boolean; private --------------- -- Registers -- --------------- subtype CONFIG_SCALE_Field is HAL.UInt4; -- CONFIG_CMP_CENTER array type CONFIG_CMP_CENTER_Field_Array is array (0 .. 3) of Boolean with Component_Size => 1, Size => 4; -- Type definition for CONFIG_CMP_CENTER type CONFIG_CMP_CENTER_Field (As_Array : Boolean := False) is record case As_Array is when False => -- CMP_CENTER as a value Val : HAL.UInt4; when True => -- CMP_CENTER as an array Arr : CONFIG_CMP_CENTER_Field_Array; end case; end record with Unchecked_Union, Size => 4; for CONFIG_CMP_CENTER_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- CONFIG_CMP_GANG array type CONFIG_CMP_GANG_Field_Array is array (0 .. 3) of Boolean with Component_Size => 1, Size => 4; -- Type definition for CONFIG_CMP_GANG type CONFIG_CMP_GANG_Field (As_Array : Boolean := False) is record case As_Array is when False => -- CMP_GANG as a value Val : HAL.UInt4; when True => -- CMP_GANG as an array Arr : CONFIG_CMP_GANG_Field_Array; end case; end record with Unchecked_Union, Size => 4; for CONFIG_CMP_GANG_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- CONFIG_CMP_IP array type CONFIG_CMP_IP_Field_Array is array (0 .. 3) of Boolean with Component_Size => 1, Size => 4; -- Type definition for CONFIG_CMP_IP type CONFIG_CMP_IP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- CMP_IP as a value Val : HAL.UInt4; when True => -- CMP_IP as an array Arr : CONFIG_CMP_IP_Field_Array; end case; end record with Unchecked_Union, Size => 4; for CONFIG_CMP_IP_Field use record Val at 0 range 0 .. 3; Arr at 0 range 0 .. 3; end record; -- PWM Configuration Register. type CONFIG_Register is record SCALE : CONFIG_SCALE_Field := 16#0#; -- unspecified Reserved_4_7 : HAL.UInt4 := 16#0#; STICKY : Boolean := False; ZEROCMP : Boolean := False; DEGLITCH : Boolean := False; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; ENALWAYS : Boolean := False; ENONESHOT : Boolean := False; -- unspecified Reserved_14_15 : HAL.UInt2 := 16#0#; CMP_CENTER : CONFIG_CMP_CENTER_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_20_23 : HAL.UInt4 := 16#0#; CMP_GANG : CONFIG_CMP_GANG_Field := (As_Array => False, Val => 16#0#); CMP_IP : CONFIG_CMP_IP_Field := (As_Array => False, Val => 16#0#); end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for CONFIG_Register use record SCALE at 0 range 0 .. 3; Reserved_4_7 at 0 range 4 .. 7; STICKY at 0 range 8 .. 8; ZEROCMP at 0 range 9 .. 9; DEGLITCH at 0 range 10 .. 10; Reserved_11_11 at 0 range 11 .. 11; ENALWAYS at 0 range 12 .. 12; ENONESHOT at 0 range 13 .. 13; Reserved_14_15 at 0 range 14 .. 15; CMP_CENTER at 0 range 16 .. 19; Reserved_20_23 at 0 range 20 .. 23; CMP_GANG at 0 range 24 .. 27; CMP_IP at 0 range 28 .. 31; end record; subtype COUNT_CNT_Field is HAL.UInt31; -- PWM Count Register. type COUNT_Register is record CNT : COUNT_CNT_Field := 16#0#; -- unspecified Reserved_31_31 : HAL.Bit := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for COUNT_Register use record CNT at 0 range 0 .. 30; Reserved_31_31 at 0 range 31 .. 31; end record; subtype SCALE_COUNT_CNT_Field is HAL.UInt16; -- PWM Scaled Counter Register. type SCALE_COUNT_Register is record CNT : SCALE_COUNT_CNT_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for SCALE_COUNT_Register use record CNT at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype COMPARE_COMPARE_Field is HAL.UInt16; -- PWM Compare Register. type COMPARE_Register is record COMPARE : COMPARE_COMPARE_Field := 16#0#; -- unspecified Reserved_16_31 : HAL.UInt16 := 16#0#; end record with Volatile_Full_Access, Size => 32, Bit_Order => System.Low_Order_First; for COMPARE_Register use record COMPARE at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Pulse-Width Modulation. type Internal_PWM is record -- PWM Configuration Register. CONFIG : aliased CONFIG_Register; -- PWM Count Register. COUNT : aliased COUNT_Register; -- PWM Scaled Counter Register. SCALE_COUNT : aliased SCALE_COUNT_Register; -- PWM Compare Register. COMPARE0 : aliased COMPARE_Register; -- PWM Compare Register. COMPARE1 : aliased COMPARE_Register; -- PWM Compare Register. COMPARE2 : aliased COMPARE_Register; -- PWM Compare Register. COMPARE3 : aliased COMPARE_Register; end record with Volatile; for Internal_PWM use record CONFIG at 16#0# range 0 .. 31; COUNT at 16#8# range 0 .. 31; SCALE_COUNT at 16#10# range 0 .. 31; COMPARE0 at 16#20# range 0 .. 31; COMPARE1 at 16#24# range 0 .. 31; COMPARE2 at 16#28# range 0 .. 31; COMPARE3 at 16#2C# range 0 .. 31; end record; type PWM_Device (Periph : not null access Internal_PWM) is limited null record; end SiFive.PWM;
libsrc/lib3d/turn_right.asm
jpoikela/z88dk
640
3314
<gh_stars>100-1000 ; ; Turtle graphics library ; Stefano - 11/2017 ; ; $Id: turn_right.asm $ ; SECTION code_clib PUBLIC turn_right PUBLIC _turn_right EXTERN __direction .turn_right ._turn_right ; __FASTCALL ld de,(__direction) ex de,hl add hl,de ld (__direction),hl and a ld de,360 sbc hl,de ret c ld (__direction),hl ret
alloy4fun_models/trashltl/models/11/8PXGBSXFqdcbX5vSw.als
Kaixi26/org.alloytools.alloy
0
3230
open main pred id8PXGBSXFqdcbX5vSw_prop12 { all f : File | eventually f in Trash iff eventually f not in Trash } pred __repair { id8PXGBSXFqdcbX5vSw_prop12 } check __repair { id8PXGBSXFqdcbX5vSw_prop12 <=> prop12o }
oeis/214/A214126.asm
neoneye/loda-programs
11
14996
<gh_stars>10-100 ; A214126: a(2n)=a(n-1)+a(n) and a(2n+1)=a(n+1) for n>=1, with a(0)=a(1)=1. ; Submitted by <NAME> ; 1,1,2,2,3,2,4,3,5,2,5,4,6,3,7,5,8,2,7,5,7,4,9,6,10,3,9,7,10,5,12,8,13,2,10,7,9,5,12,7,12,4,11,9,13,6,15,10,16,3,13,9,12,7,16,10,17,5,15,12,17,8,20,13,21,2,15,10,12,7,17,9,16,5,14,12,17,7,19,12,19,4,16,11,15,9,20,13,22,6,19,15,21,10,25,16,26,3,19,13 mov $2,$0 div $0,2 lpb $0 sub $0,1 mov $3,$2 sub $3,$0 sub $3,1 mov $4,0 mov $10,$3 sub $10,$0 mov $7,$10 mov $8,$10 mov $9,$0 lpb $7 mov $5,$9 mod $5,2 mov $6,$8 add $6,1 mod $6,2 mul $5,$6 add $4,$5 div $8,2 mov $7,$8 div $9,2 lpe cmp $4,0 add $1,$4 lpe mov $0,$1 add $0,1
Functional/Dependent.agda
Lolirofle/stuff-in-agda
6
15849
<filename>Functional/Dependent.agda module Functional.Dependent where import Lvl open import Type private variable ℓ ℓ₁ ℓ₂ : Lvl.Level -- Function type as a function _→ᶠ_ : (X : Type{ℓ₁}) → (Type{ℓ₁} → Type{ℓ₂}) → Type{ℓ₁ Lvl.⊔ ℓ₂} X →ᶠ Y = X → Y(X) infixl 30 _→ᶠ_ module _ where private variable X : Type{ℓ} private variable Y : X → Type{ℓ} private variable Z : ∀{x : X} → Y(x) → Type{ℓ} apply : (x : X) → ((x : X) → Y(x)) → Y(x) apply(x)(f) = f(x) {-# INLINE apply #-} const : (∀{x : X} → Y(x)) → ((x : X) → Y(x)) const y _ = y {-# INLINE const #-} _$_ : ((x : X) → Y(x)) → (x : X) → Y(x) f $ x = f(x) {-# INLINE _$_ #-} infixr 0 _$_ _⩺_ : (x : X) → ((x : X) → Y(x)) → Y(x) x ⩺ f = f(x) {-# INLINE _⩺_ #-} infixl 10000 _⩺_ _⩹_ : ((x : X) → Y(x)) → (x : X) → Y(x) f ⩹ x = f(x) {-# INLINE _⩹_ #-} infixl 10000 _⩹_ _∘ᵢₘₚₗ_ : (∀{x : X}{y : Y(x)} → Z{x}(y)) → (g : ∀{x : X} → Y(x)) → (∀{x : X} → Z(g{x})) (f ∘ᵢₘₚₗ g){x} = f{x}{g{x}} infixl 10000 _∘ᵢₘₚₗ_ _∘ᵢₙₛₜ_ : (⦃ x : X ⦄ ⦃ y : Y(x) ⦄ → Z{x}(y)) → (g : ⦃ x : X ⦄ → Y(x)) → (⦃ x : X ⦄ → Z(g ⦃ x ⦄)) (f ∘ᵢₙₛₜ g) ⦃ x ⦄ = f ⦃ x ⦄ ⦃ g ⦃ x ⦄ ⦄ infixl 10000 _∘ᵢₙₛₜ_ _∘ₛ_ : ((x : X) → (y : Y(x)) → Z{x}(y)) → (g : (x : X) → Y(x)) → ((x : X) → Z(g(x))) (f ∘ₛ g)(x) = f(x)(g(x)) {-# INLINE _∘ₛ_ #-} infixl 10000 _∘ₛ_ _∘_ : (∀{x : X} → (y : Y(x)) → Z{x}(y)) → (g : (x : X) → Y(x)) → ((x : X) → Z(g(x))) _∘_ f = (const f) ∘ₛ_ {-# INLINE _∘_ #-} infixl 10000 _∘_ module _ where private variable X : Type{ℓ} private variable Y : X → Type{ℓ} private variable Z : ∀{x₁ x₂ : X} → Y(x₁) → Y(x₂) → Type{ℓ} _on₂_ : (f : ∀{x₁ x₂ : X} → (y₁ : Y(x₁)) → (y₂ : Y(x₂)) → Z{x₁}{x₂}(y₁)(y₂)) → (g : (x : X) → Y(x)) → ((x₁ : X) → (x₂ : X) → Z(g(x₁))(g(x₂))) ((_▫_) on₂ f)(y₁)(y₂) = f(y₁) ▫ f(y₂) module _ where private variable X Y : Type{ℓ} private variable Z : X → Y → Type{ℓ} swap : ((x : X) → (y : Y) → Z(x)(y)) → ((y : Y) → (x : X) → Z(x)(y)) swap f(y)(x) = f(x)(y) {-# INLINE swap #-} {- TODO: Agda errors module _ where private variable X₁ : Type{ℓ} private variable X₂ : X₁ → Type{ℓ} private variable Y₁ : ∀{x₁ : X₁} → X₂(x₁) → Type{ℓ} private variable Y₂ : ∀{x₁ : X₁}{x₂ : X₂(x₁)} → Y₁{x₁}(x₂) → Type{ℓ} private variable Z : ∀{x₁ : X₁}{x₂ : X₂(x₁)}{y₁ : Y₁{x₁}(x₂)} → (Y₂{x₁}{x₂}(y₁)) → Type{ℓ} pointwise₂,₁' : (∀{x₁ : X₁} → (x₂ : X₂(x₁)) → {y₁ : Y₁(x₂)} → (y₂ : Y₂(y₁)) → Z{x₁}{x₂}{y₁}(y₂)) → (f : (x₁ : X₁) → X₂(x₁)) → (g : ∀{x₁}{x₂} → (y₁ : Y₁{x₁}(x₂)) → Y₂{x₁}{x₂}(y₁)) → ((x₁ : X₁) → (y₁ : Y₁{x₁}(f(x₁))) → Z{x₁}{f(x₁)}{y₁}(g(y₁))) -} {- module _ where private variable X₁ : Type{ℓ} private variable X₂ : X₁ → Type{ℓ} private variable Y₁ : ∀{x₁ : X₁} → X₂(x₁) → Type{ℓ} private variable Y₂ : ∀{x₁ : X₁}{x₂ : X₂(x₁)} → Y₁{x₁}(x₂) → Type{ℓ} private variable Z : ∀{x₁ : X₁}{x₂ : X₂(x₁)}{y₁ : Y₁{x₁}(x₂)} → Type{ℓ} pointwise₂,₁' : ∀{x₁ : X₁} → (x₂ : X₂(x₁)) → {y₁ : Y₁(x₂)} → (y₂ : Y₂(y₁)) → Z{x₁}{x₂}{y₁} -} module _ where private variable A : Type{ℓ} private variable B : A → Type{ℓ} private variable C : ∀{a : A} → B(a) → Type{ℓ} private variable D : ∀{a : A}{b : B(a)} → (C{a}(b)) → Type{ℓ} private variable E : ∀{a : A}{b : B(a)}{c : C{a}(b)} → D{a}{b}(c) → Type{ℓ} private variable F : ∀{a : A}{b : B(a)}{c : C{a}(b)}{d : D{a}{b}(c)} → E{a}{b}{c}(d) → Type{ℓ} -- Alternative definition: (f ∘₂ g) a b = f(g a b) _∘₂_ : (∀{a : A}{b : B(a)} → (c : C{a}(b)) → D{a}{b}(c)) → (g : ∀(a)(b) → C{a}(b)) → (∀(a)(b) → D(g a b)) _∘₂_ f = (f ∘_) ∘_ {-# INLINE _∘₂_ #-} -- Alternative definition: (f ∘₂ₛ g) x y = f a b (g a b) _∘₂ₛ_ : ((a : A) → (b : B(a)) → (c : C{a}(b)) → D{a}{b}(c)) → (g : ∀(a)(b) → C{a}(b)) → (∀(a)(b) → D(g a b)) _∘₂ₛ_ f = ((_∘ₛ_) ∘ f) ∘ₛ_ {-# INLINE _∘₂ₛ_ #-} -- Alternative definition: (f ∘₂ g) a b c = f(g a b c) _∘₃_ : (∀{a : A}{b : B(a)}{c : C{a}(b)} → (d : D{a}{b}(c)) → E{a}{b}{c}(d)) → (g : ∀(a)(b)(c) → D{a}{b}(c)) → (∀(a)(b)(c) → E(g a b c)) _∘₃_ f = (f ∘₂_) ∘_ {-# INLINE _∘₃_ #-} -- Alternative definition: (f ∘₃ₛ g) a b c = f a b c (g a b c) _∘₃ₛ_ : (∀(a : A)(b : B(a))(c : C{a}(b)) → (d : D{a}{b}(c)) → E{a}{b}{c}(d)) → (g : ∀(a)(b)(c) → D{a}{b}(c)) → (∀(a)(b)(c) → E(g a b c)) _∘₃ₛ_ f = ((_∘₂ₛ_) ∘ f) ∘ₛ_ {-# INLINE _∘₃ₛ_ #-} -- Alternative definition: (f ∘₄ g) a b c d = f(g a b c d) _∘₄_ : (∀{a : A}{b : B(a)}{c : C{a}(b)}{d : D{a}{b}(c)} → (e : E{a}{b}{c}(d)) → F{a}{b}{c}{d}(e)) → (g : ∀(a)(b)(c)(d) → E{a}{b}{c}(d)) → (∀(a)(b)(c)(d) → F(g a b c d)) _∘₄_ f = (f ∘₃_) ∘_ {-# INLINE _∘₄_ #-} -- Alternative definition: (f ∘₄ₛ g) a b c d = f a b c d (g a b c d) _∘₄ₛ_ : (∀(a : A)(b : B(a))(c : C{a}(b))(d : D{a}{b}(c)) → (e : E{a}{b}{c}(d)) → F{a}{b}{c}{d}(e)) → (g : ∀(a)(b)(c)(d) → E{a}{b}{c}(d)) → (∀(a)(b)(c)(d) → F(g a b c d)) _∘₄ₛ_ f = ((_∘₃ₛ_) ∘ f) ∘ₛ_ {-# INLINE _∘₄ₛ_ #-} -- Alternative definition: pointwise₂,₁(_▫_) f g a = f(a) ▫ g(a) pointwise₂,₁ : (∀{a : A} → (b : B(a)) → (c : C{a}(b)) → D{a}{b}(c)) → (f : (a : A) → B(a)) → (g : (a : A) → C{a}(f(a))) → (a : A) → D{a}{f(a)}(g(a)) pointwise₂,₁(_▫_) = ((_∘ₛ_) ∘ ((_▫_) ∘_)) {-# INLINE pointwise₂,₁ #-} -- Alternative definition: pointwise₂,₂(_▫_) f g a b = (f a b) ▫ (g a b) pointwise₂,₂ : (∀{a : A}{b : B(a)} → (c : C{a}(b)) → (d : D{a}{b}(c)) → E{a}{b}{c}(d)) → (f : (a : A) → (b : B(a)) → C{a}(b)) → (g : (a : A) → (b : B(a)) → D{a}{b}(f a b)) → (a : A) → (b : B(a)) → E{a}{b}{f a b}(g a b) pointwise₂,₂(_▫_) = pointwise₂,₁(pointwise₂,₁(_▫_)) {-# INLINE pointwise₂,₂ #-} -- Alternative definition: pointwise₂,₃(_▫_) f g a b c = (f a b c) ▫ (g a b c) pointwise₂,₃ : (∀{a : A}{b : B(a)}{c : C{a}(b)} → (d : D{a}{b}(c)) → (e : E{a}{b}{c}(d)) → F{a}{b}{c}{d}(e)) → (f : (a : A) → (b : B(a)) → (c : C{a}(b)) → D{a}{b}(c)) → (g : (a : A) → (b : B(a)) → (c : C{a}(b)) → E{a}{b}(f a b c)) → (a : A) → (b : B(a)) → (c : C{a}(b)) → F{a}{b}{c}{f a b c}(g a b c) pointwise₂,₃(_▫_) = pointwise₂,₁(pointwise₂,₂(_▫_)) {-# INLINE pointwise₂,₃ #-}
Library/GrObj/UI/uiCustomDuplicateControl.asm
steakknife/pcgeos
504
87103
COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Copyright (c) GeoWorks 1991 -- All Rights Reserved PROJECT: PC GEOS MODULE: FILE: uiCustomDuplicateControl.asm AUTHOR: <NAME> REVISION HISTORY: Name Date Description ---- ---- ----------- jon 24 feb 1992 Initial version. DESCRIPTION: Code for the GrObjCustomDuplicateControlClass $Id: uiCustomDuplicateControl.asm,v 1.1 97/04/04 18:06:25 newdeal Exp $ %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ GrObjUIControllerCode segment resource COMMENT @---------------------------------------------------------------------- MESSAGE: GrObjCustomDuplicateControlGetInfo -- MSG_GEN_CONTROL_GET_INFO for GrObjCustomDuplicateControlClass DESCRIPTION: Return group PASS: *ds:si - instance data es - segment of GrObjCustomDuplicateControlClass ax - The message cx:dx - GenControlBuildInfo structure to fill in RETURN: none DESTROYED: bx, si, di, ds, es (message handler) REGISTER/STACK USAGE: PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- Tony 10/31/91 Initial version ------------------------------------------------------------------------------@ GrObjCustomDuplicateControlGetInfo method dynamic GrObjCustomDuplicateControlClass, MSG_GEN_CONTROL_GET_INFO mov si, offset GOCDC_dupInfo call CopyDupInfoCommon ret GrObjCustomDuplicateControlGetInfo endm GOCDC_dupInfo GenControlBuildInfo < mask GCBF_SUSPEND_ON_APPLY, ; GCBI_flags GOCDC_IniFileKey, ; GCBI_initFileKey GOCDC_gcnList, ; GCBI_gcnList length GOCDC_gcnList, ; GCBI_gcnCount GOCDC_notifyList, ; GCBI_notificationList length GOCDC_notifyList, ; GCBI_notificationCount GOCDCName, ; GCBI_controllerName handle GrObjCustomDuplicateControlUI, ; GCBI_dupBlock GOCDC_childList, ; GCBI_childList length GOCDC_childList, ; GCBI_childCount GOCDC_featuresList, ; GCBI_featuresList length GOCDC_featuresList, ; GCBI_featuresCount GOCDC_DEFAULT_FEATURES, ; GCBI_defaultFeatures 0, ; GCBI_dupBlock 0, ; GCBI_childList 0, ; GCBI_childCount 0, ; GCBI_featuresList 0, ; GCBI_featuresCount 0, ; GCBI_defaultFeatures GOCDC_helpContext> ; GCBI_helpContext if FULL_EXECUTE_IN_PLACE GrObjControlInfoXIP segment resource endif GOCDC_helpContext char "dbCustomDup", 0 GOCDC_IniFileKey char "GrObjCustomDuplicate", 0 GOCDC_gcnList GCNListType \ <MANUFACTURER_ID_GEOWORKS, \ GAGCNLT_APP_TARGET_NOTIFY_GROBJ_BODY_SELECTION_STATE_CHANGE> GOCDC_notifyList NotificationType \ <MANUFACTURER_ID_GEOWORKS, GWNT_GROBJ_BODY_SELECTION_STATE_CHANGE> ;--- GOCDC_childList GenControlChildInfo \ <offset GrObjCustomDuplicateInteraction, mask GOCDCFeatures, 0> GOCDC_featuresList GenControlFeaturesInfo \ <offset GrObjCustomDuplicateSkewGroup, CDSkewName, 0>, <offset GrObjCustomDuplicateRotationGroup, CDRotationName, 0>, <offset GrObjCustomDuplicateScaleGroup, CDScaleName, 0>, <offset GrObjCustomDuplicateMoveGroup, CDMoveName, 0>, <offset GrObjCustomDuplicateRepetitionValue, CDRepetitionsName, 0> if FULL_EXECUTE_IN_PLACE GrObjControlInfoXIP ends endif COMMENT @---------------------------------------------------------------------- MESSAGE: GrObjCustomDuplicateControlUpdateUI -- MSG_GEN_CONTROL_UPDATE_UI for GrObjCustomDuplicateControlClass DESCRIPTION: Handle notification of type change PASS: *ds:si - instance data es - segment of GrObjCustomDuplicateControlClass ax - MSG_GEN_CONTROL_UPDATE_UI ss:bp - GenControlUpdateUIParams RETURN: nothing DESTROYED: bx, si, di, ds, es (message handler) REGISTER/STACK USAGE: PSEUDO CODE/STRATEGY: KNOWN BUGS/SIDE EFFECTS/CAVEATS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- jon 11 feb 1992 Initial version ------------------------------------------------------------------------------@ GrObjCustomDuplicateControlUpdateUI method GrObjCustomDuplicateControlClass, MSG_GEN_CONTROL_UPDATE_UI uses cx .enter mov ax, mask GOCDCFeatures ;any feature mov cx, 1 ;just 1 grobj mov si, offset GrObjCustomDuplicateReplyApply call GrObjControlUpdateUIBasedOnNumSelectedAndFeatureSet .leave ret GrObjCustomDuplicateControlUpdateUI endm GrObjUIControllerCode ends GrObjUIControllerActionCode segment resource COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% GrObjCustomDuplicateControlCustomDuplicate %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% Description: GrObjCustomDuplicateControl method for MSG_GOCDC_CUSTOM_DUPLICATE Called by: Pass: *ds:si = GrObjCustomDuplicateControl object ds:di = GrObjCustomDuplicateControl instance Return: nothing Destroyed: ax, bx, di Comments: Revision History: Name Date Description ---- ------------ ----------- jon Feb 24, 1992 Initial version. %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ GrObjCustomDuplicateControlCustomDuplicate method dynamic GrObjCustomDuplicateControlClass, MSG_GOCDC_CUSTOM_DUPLICATE .enter mov di, offset GrObjCustomDuplicateControlClass call ObjCallSuperNoLock call GetChildBlockAndFeatures sub sp, size GrObjBodyCustomDuplicateParams mov bp, sp push si ;save controller chunk ; ; Get the number of repetitions ; mov dx, 1 test ax, mask GOCDCF_REPETITIONS jz afterReps push bp, ax mov si, offset GrObjCustomDuplicateRepetitionValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp, ax afterReps: mov ss:[bp].GBCDP_repetitions, dx clr dx clrdwf ss:[bp].GBCDP_move.PDF_x, dx clrdwf ss:[bp].GBCDP_move.PDF_y, dx push ax test ax, mask GOCDCF_MOVE jz afterMove ; ; Get horizontal offset ; push bp mov si, offset GrObjCustomDuplicateMoveHValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp mov_tr ax, dx cwd movdwf ss:[bp].GBCDP_move.PDF_x, dxaxcx ; ; Get vertical offset ; push bp mov si, offset GrObjCustomDuplicateMoveVValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp mov_tr ax, dx cwd movdwf ss:[bp].GBCDP_move.PDF_y, dxaxcx afterMove: pop ax clrwwf dxcx test ax, mask GOCDCF_ROTATE jz afterRotate ; ; Get rotation ; push bp, ax mov si, offset GrObjCustomDuplicateRotationValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp, ax movwwf ss:[bp].GBCDP_rotation, dxcx afterRotate: ; ; Clear the rotation anchor for now ; clr ss:[bp].GBCDP_rotateAnchor ; ; Get width scale ; clr dx mov ss:[bp].GBCDP_scale.GOASD_scale.GOSD_xScale.WWF_frac, dx mov ss:[bp].GBCDP_scale.GOASD_scale.GOSD_yScale.WWF_frac, dx inc dx mov ss:[bp].GBCDP_scale.GOASD_scale.GOSD_xScale.WWF_int, dx mov ss:[bp].GBCDP_scale.GOASD_scale.GOSD_yScale.WWF_int, dx push ax test ax, mask GOCDCF_SCALE jz afterScale push bp mov si, offset GrObjCustomDuplicateScaleHValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp ; ; Convert from % ; push bx mov bx, 100 clr ax call GrSDivWWFixed pop bx movwwf ss:[bp].GBCDP_scale.GOASD_scale.GOSD_xScale, dxcx ; ; Get height scale ; push bp mov si, offset GrObjCustomDuplicateScaleVValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp ; ; Convert from % ; push bx mov bx, 100 clr ax call GrSDivWWFixed pop bx movwwf ss:[bp].GBCDP_scale.GOASD_scale.GOSD_yScale, dxcx afterScale: ; ; Clear the scale anchor for now ; clr ss:[bp].GBCDP_scale.GOASD_scaleAnchor pop ax clr dx clrwwf ss:[bp].GBCDP_skew.GOASD_degrees.GOSD_xDegrees, dx clrwwf ss:[bp].GBCDP_skew.GOASD_degrees.GOSD_yDegrees, dx test ax, mask GOCDCF_SKEW jz afterSkew ; ; Get horizontal skew ; push bp mov si, offset GrObjCustomDuplicateSkewHValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp movwwf ss:[bp].GBCDP_skew.GOASD_degrees.GOSD_xDegrees, dxcx ; ; Get vertical skew ; push bp mov si, offset GrObjCustomDuplicateSkewVValue mov ax, MSG_GEN_VALUE_GET_VALUE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage pop bp movwwf ss:[bp].GBCDP_skew.GOASD_degrees.GOSD_yDegrees, dxcx afterSkew: ; ; Clear the skew anchor for now ; clr ss:[bp].GBCDP_skew.GOASD_skewAnchor pop si ;*ds:si - controller mov dx, size GrObjBodyCustomDuplicateParams mov ax, MSG_GB_CUSTOM_DUPLICATE_SELECTED_GROBJS call GrObjControlOutputActionStackToBody add sp, size GrObjBodyCustomDuplicateParams .leave ret GrObjCustomDuplicateControlCustomDuplicate endm GrObjUIControllerActionCode ends
src/sys/os-windows/util-systems-os.ads
RREE/ada-util
60
23541
----------------------------------------------------------------------- -- util-system-os -- Windows system operations -- Copyright (C) 2011, 2012, 2015, 2018, 2019, 2021 <NAME> -- Written by <NAME> (<EMAIL>) -- -- 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. ----------------------------------------------------------------------- with Ada.Unchecked_Deallocation; with System; with Interfaces.C; with Interfaces.C.Strings; with Util.Systems.Types; with Util.Systems.Constants; -- The <b>Util.Systems.Os</b> package defines various types and operations which are specific -- to the OS (Windows). package Util.Systems.Os is -- The directory separator. Directory_Separator : constant Character := '\'; -- The path separator. Path_Separator : constant Character := ';'; -- The line ending separator. Line_Separator : constant String := "" & ASCII.CR & ASCII.LF; -- Defines several windows specific types. type BOOL is mod 8; type WORD is new Interfaces.C.short; type DWORD is new Interfaces.C.unsigned_long; type PDWORD is access all DWORD; for PDWORD'Size use Standard'Address_Size; function Get_Last_Error return Integer with Import => True, Convention => Stdcall, Link_Name => "GetLastError"; function Errno return Integer with Import => True, Convention => Stdcall, Link_Name => "GetLastError"; -- Some useful error codes (See Windows document "System Error Codes (0-499)"). ERROR_BROKEN_PIPE : constant Integer := 109; -- ------------------------------ -- Handle -- ------------------------------ -- The windows HANDLE is defined as a void* in the C API. subtype HANDLE is Util.Systems.Types.HANDLE; use type Util.Systems.Types.HANDLE; INVALID_HANDLE_VALUE : constant HANDLE := -1; type PHANDLE is access all HANDLE; for PHANDLE'Size use Standard'Address_Size; function Wait_For_Single_Object (H : in HANDLE; Time : in DWORD) return DWORD with Import => True, Convention => Stdcall, Link_Name => "WaitForSingleObject"; type Security_Attributes is record Length : DWORD; Security_Descriptor : System.Address; Inherit : Interfaces.C.int := 0; end record; type LPSECURITY_ATTRIBUTES is access all Security_Attributes; for LPSECURITY_ATTRIBUTES'Size use Standard'Address_Size; -- ------------------------------ -- File operations -- ------------------------------ subtype File_Type is Util.Systems.Types.File_Type; NO_FILE : constant File_Type := 0; STD_INPUT_HANDLE : constant DWORD := 16#fffffff6#; STD_OUTPUT_HANDLE : constant DWORD := 16#fffffff5#; STD_ERROR_HANDLE : constant DWORD := 16#fffffff4#; -- These values are specific to Linux. O_RDONLY : constant Interfaces.C.int := Util.Systems.Constants.O_RDONLY; O_WRONLY : constant Interfaces.C.int := Util.Systems.Constants.O_WRONLY; O_RDWR : constant Interfaces.C.int := Util.Systems.Constants.O_RDWR; O_CREAT : constant Interfaces.C.int := Util.Systems.Constants.O_CREAT; O_EXCL : constant Interfaces.C.int := Util.Systems.Constants.O_EXCL; O_TRUNC : constant Interfaces.C.int := Util.Systems.Constants.O_TRUNC; O_APPEND : constant Interfaces.C.int := Util.Systems.Constants.O_APPEND; function Get_Std_Handle (Kind : in DWORD) return File_Type with Import => True, Convention => Stdcall, Link_Name => "GetStdHandle"; function STDIN_FILENO return File_Type is (Get_Std_Handle (STD_INPUT_HANDLE)); function STDOUT_FILENO return File_Type is (Get_Std_Handle (STD_OUTPUT_HANDLE)); function STDERR_FILENO return File_Type is (Get_Std_Handle (STD_ERROR_HANDLE)); function Close_Handle (Fd : in File_Type) return BOOL with Import => True, Convention => Stdcall, Link_Name => "CloseHandle"; function Duplicate_Handle (SourceProcessHandle : in HANDLE; SourceHandle : in HANDLE; TargetProcessHandle : in HANDLE; TargetHandle : in PHANDLE; DesiredAccess : in DWORD; InheritHandle : in BOOL; Options : in DWORD) return BOOL with Import => True, Convention => Stdcall, Link_Name => "DuplicateHandle"; function Read_File (Fd : in File_Type; Buf : in System.Address; Size : in DWORD; Result : in PDWORD; Overlap : in System.Address) return BOOL with Import => True, Convention => Stdcall, Link_Name => "ReadFile"; function Write_File (Fd : in File_Type; Buf : in System.Address; Size : in DWORD; Result : in PDWORD; Overlap : in System.Address) return BOOL with Import => True, Convention => Stdcall, Link_Name => "WriteFile"; function Create_Pipe (Read_Handle : in PHANDLE; Write_Handle : in PHANDLE; Attributes : in LPSECURITY_ATTRIBUTES; Buf_Size : in DWORD) return BOOL with Import => True, Convention => Stdcall, Link_Name => "CreatePipe"; subtype LPWSTR is Interfaces.C.Strings.chars_ptr; subtype LPCSTR is Interfaces.C.Strings.chars_ptr; subtype PBYTE is Interfaces.C.Strings.chars_ptr; subtype Ptr is Interfaces.C.Strings.chars_ptr; subtype LPCTSTR is System.Address; subtype LPTSTR is System.Address; type CommandPtr is access all Interfaces.C.wchar_array; NULL_STR : constant LPWSTR := Interfaces.C.Strings.Null_Ptr; type FileTime is record dwLowDateTime : DWORD; dwHighDateTime : DWORD; end record; type LPFILETIME is access all FileTime; function To_Time (Time : in FileTime) return Util.Systems.Types.Time_Type; type Startup_Info is record cb : DWORD := 0; lpReserved : LPWSTR := NULL_STR; lpDesktop : LPWSTR := NULL_STR; lpTitle : LPWSTR := NULL_STR; dwX : DWORD := 0; dwY : DWORD := 0; dwXsize : DWORD := 0; dwYsize : DWORD := 0; dwXCountChars : DWORD := 0; dwYCountChars : DWORD := 0; dwFillAttribute : DWORD := 0; dwFlags : DWORD := 0; wShowWindow : WORD := 0; cbReserved2 : WORD := 0; lpReserved2 : PBYTE := Interfaces.C.Strings.Null_Ptr; hStdInput : HANDLE := 0; hStdOutput : HANDLE := 0; hStdError : HANDLE := 0; end record; type Startup_Info_Access is access all Startup_Info; type PROCESS_INFORMATION is record hProcess : HANDLE := NO_FILE; hThread : HANDLE := NO_FILE; dwProcessId : DWORD; dwThreadId : DWORD; end record; type Process_Information_Access is access all PROCESS_INFORMATION; function Get_Current_Process return HANDLE with Import => True, Convention => Stdcall, Link_Name => "GetCurrentProcess"; function Get_Exit_Code_Process (Proc : in HANDLE; Code : in PDWORD) return BOOL with Import => True, Convention => Stdcall, Link_Name => "GetExitCodeProcess"; function Create_Process (Name : in LPCTSTR; Command : in System.Address; Process_Attributes : in LPSECURITY_ATTRIBUTES; Thread_Attributes : in LPSECURITY_ATTRIBUTES; Inherit_Handles : in BOOL; Creation_Flags : in DWORD; Environment : in LPTSTR; Directory : in LPCTSTR; Startup_Info : in Startup_Info_Access; Process_Info : in Process_Information_Access) return Integer with Import => True, Convention => Stdcall, Link_Name => "CreateProcessW"; -- Terminate the windows process and all its threads. function Terminate_Process (Proc : in HANDLE; Code : in DWORD) return Integer with Import => True, Convention => Stdcall, Link_Name => "TerminateProcess"; function Sys_Stat (Path : in LPWSTR; Stat : access Util.Systems.Types.Stat_Type) return Integer with Import => True, Convention => Stdcall, Link_Name => "_stat64"; function Sys_Fstat (Fs : in File_Type; Stat : access Util.Systems.Types.Stat_Type) return Integer; function Sys_Lseek (Fs : in File_Type; Offset : in Util.Systems.Types.off_t; Mode : in Util.Systems.Types.Seek_Mode) return Util.Systems.Types.off_t; FILE_SHARE_WRITE : constant DWORD := 16#02#; FILE_SHARE_READ : constant DWORD := 16#01#; GENERIC_READ : constant DWORD := 16#80000000#; GENERIC_WRITE : constant DWORD := 16#40000000#; CREATE_NEW : constant DWORD := 1; CREATE_ALWAYS : constant DWORD := 2; OPEN_EXISTING : constant DWORD := 3; OPEN_ALWAYS : constant DWORD := 4; TRUNCATE_EXISTING : constant DWORD := 5; FILE_APPEND_DATA : constant DWORD := 4; FILE_ATTRIBUTE_ARCHIVE : constant DWORD := 16#20#; FILE_ATTRIBUTE_HIDDEN : constant DWORD := 16#02#; FILE_ATTRIBUTE_NORMAL : constant DWORD := 16#80#; FILE_ATTRIBUTE_READONLY : constant DWORD := 16#01#; FILE_ATTRIBUTE_TEMPORARY : constant DWORD := 16#100#; function Create_File (Name : in LPCTSTR; Desired_Access : in DWORD; Share_Mode : in DWORD; Attributes : in LPSECURITY_ATTRIBUTES; Creation : in DWORD; Flags : in DWORD; Template_File : HANDLE) return HANDLE with Import => True, Convention => Stdcall, Link_Name => "CreateFileW"; -- Close a file function Sys_Close (Fd : in File_Type) return Integer; -- Open a file function Sys_Open (Path : in Ptr; Flags : in Interfaces.C.int; Mode : in Util.Systems.Types.mode_t) return File_Type; function Sys_Ftruncate (Fs : in File_Type; Length : in Util.Systems.Types.off_t) return Integer; function Sys_Fchmod (Fd : in File_Type; Mode : in Util.Systems.Types.mode_t) return Integer; -- Change permission of a file. function Sys_Chmod (Path : in Ptr; Mode : in Util.Systems.Types.mode_t) return Integer with Import => True, Convention => Stdcall, Link_Name => "_chmod"; function Strerror (Errno : in Integer) return Interfaces.C.Strings.chars_ptr with Import => True, Convention => Stdcall, Link_Name => "strerror"; function Sys_GetHandleInformation (Fd : in HANDLE; Flags : access DWORD) return BOOL with Import => True, Convention => Stdcall, Link_Name => "GetHandleInformation"; type Wchar_Ptr is access all Interfaces.C.wchar_array; function To_WSTR (Value : in String) return Wchar_Ptr; procedure Free is new Ada.Unchecked_Deallocation (Object => Interfaces.C.wchar_array, Name => Wchar_Ptr); private -- kernel32 is used on Windows32 as well as Windows64. pragma Linker_Options ("-lkernel32"); end Util.Systems.Os;
coverage/IN_CTS/0532-COVERAGE-basic-tti-impl-h-427-444/work/variant/1_spirv_asm/shader.frag.asm
asuonpaa/ShaderTests
0
19528
<filename>coverage/IN_CTS/0532-COVERAGE-basic-tti-impl-h-427-444/work/variant/1_spirv_asm/shader.frag.asm ; SPIR-V ; Version: 1.0 ; Generator: Khronos Glslang Reference Front End; 10 ; Bound: 186 ; Schema: 0 OpCapability Shader %1 = OpExtInstImport "GLSL.std.450" OpMemoryModel Logical GLSL450 OpEntryPoint Fragment %4 "main" %110 OpExecutionMode %4 OriginUpperLeft OpSource ESSL 320 OpName %4 "main" OpName %11 "arr" OpName %14 "buf0" OpMemberName %14 0 "_GLF_uniform_int_values" OpName %16 "" OpName %54 "i" OpName %73 "a" OpName %88 "j" OpName %110 "_GLF_color" OpName %125 "ref" OpName %159 "i" OpDecorate %13 ArrayStride 16 OpMemberDecorate %14 0 Offset 0 OpDecorate %14 Block OpDecorate %16 DescriptorSet 0 OpDecorate %16 Binding 0 OpDecorate %110 Location 0 %2 = OpTypeVoid %3 = OpTypeFunction %2 %6 = OpTypeInt 32 1 %7 = OpTypeInt 32 0 %8 = OpConstant %7 16 %9 = OpTypeArray %6 %8 %10 = OpTypePointer Function %9 %12 = OpConstant %7 5 %13 = OpTypeArray %6 %12 %14 = OpTypeStruct %13 %15 = OpTypePointer Uniform %14 %16 = OpVariable %15 Uniform %17 = OpConstant %6 0 %18 = OpConstant %6 1 %19 = OpTypePointer Uniform %6 %53 = OpTypePointer Function %6 %55 = OpConstant %6 3 %71 = OpTypeBool %97 = OpConstant %6 4 %107 = OpTypeFloat 32 %108 = OpTypeVector %107 4 %109 = OpTypePointer Output %108 %110 = OpVariable %109 Output %114 = OpConstant %6 2 %4 = OpFunction %2 None %3 %5 = OpLabel %11 = OpVariable %10 Function %54 = OpVariable %53 Function %73 = OpVariable %53 Function %88 = OpVariable %53 Function %125 = OpVariable %10 Function %159 = OpVariable %53 Function %20 = OpAccessChain %19 %16 %17 %18 %21 = OpLoad %6 %20 %22 = OpAccessChain %19 %16 %17 %18 %23 = OpLoad %6 %22 %24 = OpAccessChain %19 %16 %17 %18 %25 = OpLoad %6 %24 %26 = OpAccessChain %19 %16 %17 %18 %27 = OpLoad %6 %26 %28 = OpAccessChain %19 %16 %17 %18 %29 = OpLoad %6 %28 %30 = OpAccessChain %19 %16 %17 %18 %31 = OpLoad %6 %30 %32 = OpAccessChain %19 %16 %17 %18 %33 = OpLoad %6 %32 %34 = OpAccessChain %19 %16 %17 %18 %35 = OpLoad %6 %34 %36 = OpAccessChain %19 %16 %17 %18 %37 = OpLoad %6 %36 %38 = OpAccessChain %19 %16 %17 %18 %39 = OpLoad %6 %38 %40 = OpAccessChain %19 %16 %17 %18 %41 = OpLoad %6 %40 %42 = OpAccessChain %19 %16 %17 %18 %43 = OpLoad %6 %42 %44 = OpAccessChain %19 %16 %17 %18 %45 = OpLoad %6 %44 %46 = OpAccessChain %19 %16 %17 %18 %47 = OpLoad %6 %46 %48 = OpAccessChain %19 %16 %17 %18 %49 = OpLoad %6 %48 %50 = OpAccessChain %19 %16 %17 %18 %51 = OpLoad %6 %50 %52 = OpCompositeConstruct %9 %21 %23 %25 %27 %29 %31 %33 %35 %37 %39 %41 %43 %45 %47 %49 %51 OpStore %11 %52 %56 = OpAccessChain %19 %16 %17 %55 %57 = OpLoad %6 %56 OpStore %54 %57 OpBranch %58 %58 = OpLabel OpLoopMerge %60 %61 None OpBranch %62 %62 = OpLabel %63 = OpLoad %6 %54 %64 = OpAccessChain %19 %16 %17 %18 %65 = OpLoad %6 %64 %66 = OpAccessChain %19 %16 %17 %18 %67 = OpLoad %6 %66 %68 = OpAccessChain %19 %16 %17 %18 %69 = OpLoad %6 %68 %70 = OpBitFieldSExtract %6 %65 %67 %69 %72 = OpSGreaterThanEqual %71 %63 %70 OpBranchConditional %72 %59 %60 %59 = OpLabel %74 = OpAccessChain %19 %16 %17 %18 %75 = OpLoad %6 %74 OpStore %73 %75 %76 = OpAccessChain %19 %16 %17 %18 %77 = OpLoad %6 %76 %78 = OpAccessChain %53 %11 %77 %79 = OpLoad %6 %78 %80 = OpAccessChain %19 %16 %17 %18 %81 = OpLoad %6 %80 %82 = OpIEqual %71 %79 %81 OpSelectionMerge %84 None OpBranchConditional %82 %83 %84 %83 = OpLabel %85 = OpLoad %6 %73 %86 = OpLoad %6 %54 %87 = OpAccessChain %53 %11 %85 OpStore %87 %86 OpBranch %84 %84 = OpLabel %89 = OpAccessChain %19 %16 %17 %55 %90 = OpLoad %6 %89 OpStore %88 %90 OpBranch %91 %91 = OpLabel OpLoopMerge %93 %94 None OpBranch %95 %95 = OpLabel %96 = OpLoad %6 %88 %98 = OpAccessChain %19 %16 %17 %97 %99 = OpLoad %6 %98 %100 = OpSLessThan %71 %96 %99 OpBranchConditional %100 %92 %93 %92 = OpLabel %101 = OpLoad %6 %88 %102 = OpAccessChain %53 %11 %101 OpStore %102 %17 OpBranch %94 %94 = OpLabel %103 = OpLoad %6 %88 %104 = OpIAdd %6 %103 %18 OpStore %88 %104 OpBranch %91 %93 = OpLabel OpBranch %61 %61 = OpLabel %105 = OpLoad %6 %54 %106 = OpISub %6 %105 %18 OpStore %54 %106 OpBranch %58 %60 = OpLabel %111 = OpAccessChain %19 %16 %17 %18 %112 = OpLoad %6 %111 %113 = OpConvertSToF %107 %112 %115 = OpAccessChain %19 %16 %17 %114 %116 = OpLoad %6 %115 %117 = OpConvertSToF %107 %116 %118 = OpAccessChain %19 %16 %17 %114 %119 = OpLoad %6 %118 %120 = OpConvertSToF %107 %119 %121 = OpAccessChain %19 %16 %17 %18 %122 = OpLoad %6 %121 %123 = OpConvertSToF %107 %122 %124 = OpCompositeConstruct %108 %113 %117 %120 %123 OpStore %110 %124 %126 = OpAccessChain %19 %16 %17 %18 %127 = OpLoad %6 %126 %128 = OpAccessChain %19 %16 %17 %55 %129 = OpLoad %6 %128 %130 = OpAccessChain %19 %16 %17 %114 %131 = OpLoad %6 %130 %132 = OpAccessChain %19 %16 %17 %114 %133 = OpLoad %6 %132 %134 = OpAccessChain %19 %16 %17 %114 %135 = OpLoad %6 %134 %136 = OpAccessChain %19 %16 %17 %114 %137 = OpLoad %6 %136 %138 = OpAccessChain %19 %16 %17 %114 %139 = OpLoad %6 %138 %140 = OpAccessChain %19 %16 %17 %18 %141 = OpLoad %6 %140 %142 = OpAccessChain %19 %16 %17 %18 %143 = OpLoad %6 %142 %144 = OpAccessChain %19 %16 %17 %18 %145 = OpLoad %6 %144 %146 = OpAccessChain %19 %16 %17 %18 %147 = OpLoad %6 %146 %148 = OpAccessChain %19 %16 %17 %18 %149 = OpLoad %6 %148 %150 = OpAccessChain %19 %16 %17 %18 %151 = OpLoad %6 %150 %152 = OpAccessChain %19 %16 %17 %18 %153 = OpLoad %6 %152 %154 = OpAccessChain %19 %16 %17 %18 %155 = OpLoad %6 %154 %156 = OpAccessChain %19 %16 %17 %18 %157 = OpLoad %6 %156 %158 = OpCompositeConstruct %9 %127 %129 %131 %133 %135 %137 %139 %141 %143 %145 %147 %149 %151 %153 %155 %157 OpStore %125 %158 %160 = OpAccessChain %19 %16 %17 %114 %161 = OpLoad %6 %160 OpStore %159 %161 OpBranch %162 %162 = OpLabel OpLoopMerge %164 %165 None OpBranch %166 %166 = OpLabel %167 = OpLoad %6 %159 %168 = OpAccessChain %19 %16 %17 %17 %169 = OpLoad %6 %168 %170 = OpSLessThan %71 %167 %169 OpBranchConditional %170 %163 %164 %163 = OpLabel %171 = OpLoad %6 %159 %172 = OpAccessChain %53 %11 %171 %173 = OpLoad %6 %172 %174 = OpLoad %6 %159 %175 = OpAccessChain %53 %125 %174 %176 = OpLoad %6 %175 %177 = OpINotEqual %71 %173 %176 OpSelectionMerge %179 None OpBranchConditional %177 %178 %179 %178 = OpLabel %180 = OpAccessChain %19 %16 %17 %114 %181 = OpLoad %6 %180 %182 = OpConvertSToF %107 %181 %183 = OpCompositeConstruct %108 %182 %182 %182 %182 OpStore %110 %183 OpBranch %179 %179 = OpLabel OpBranch %165 %165 = OpLabel %184 = OpLoad %6 %159 %185 = OpIAdd %6 %184 %18 OpStore %159 %185 OpBranch %162 %164 = OpLabel OpReturn OpFunctionEnd
data/pokemon/dex_entries/giratina.asm
AtmaBuster/pokeplat-gen2
6
102705
db "RENEGADE@" ; species name db "It was banished" next "for its violence." next "It silently gazed" page "upon the old world" next "from the" next "Distortion World.@"
memsim-master/src/benchmark-matrix-lu.adb
strenkml/EE368
0
3589
<gh_stars>0 package body Benchmark.Matrix.LU is function Create_LU return Benchmark_Pointer is begin return new LU_Type; end Create_LU; procedure Run(benchmark : in LU_Type) is addr : constant Address_Type := 0; begin for k in 0 .. benchmark.size - 1 loop for j in k + 1 .. benchmark.size - 1 loop Read(benchmark, addr, k, j); Read(benchmark, addr, k, k); Write(benchmark, addr, k, j); end loop; for i in k + 1 .. benchmark.size - 1 loop for j in k + 1 .. benchmark.size - 1 loop Read(benchmark, addr, i, j); Read(benchmark, addr, i, k); Read(benchmark, addr, k, j); Write(benchmark, addr, i, j); end loop; end loop; end loop; end Run; end Benchmark.Matrix.LU;
_build/dispatcher/jmp_ippsHMACDuplicate_rmf_8a837879.asm
zyktrcn/ippcp
1
89746
extern m7_ippsHMACDuplicate_rmf:function extern n8_ippsHMACDuplicate_rmf:function extern y8_ippsHMACDuplicate_rmf:function extern e9_ippsHMACDuplicate_rmf:function extern l9_ippsHMACDuplicate_rmf:function extern n0_ippsHMACDuplicate_rmf:function extern k0_ippsHMACDuplicate_rmf:function extern ippcpJumpIndexForMergedLibs extern ippcpSafeInit:function segment .data align 8 dq .Lin_ippsHMACDuplicate_rmf .Larraddr_ippsHMACDuplicate_rmf: dq m7_ippsHMACDuplicate_rmf dq n8_ippsHMACDuplicate_rmf dq y8_ippsHMACDuplicate_rmf dq e9_ippsHMACDuplicate_rmf dq l9_ippsHMACDuplicate_rmf dq n0_ippsHMACDuplicate_rmf dq k0_ippsHMACDuplicate_rmf segment .text global ippsHMACDuplicate_rmf:function (ippsHMACDuplicate_rmf.LEndippsHMACDuplicate_rmf - ippsHMACDuplicate_rmf) .Lin_ippsHMACDuplicate_rmf: db 0xf3, 0x0f, 0x1e, 0xfa call ippcpSafeInit wrt ..plt align 16 ippsHMACDuplicate_rmf: db 0xf3, 0x0f, 0x1e, 0xfa mov rax, qword [rel ippcpJumpIndexForMergedLibs wrt ..gotpc] movsxd rax, dword [rax] lea r11, [rel .Larraddr_ippsHMACDuplicate_rmf] mov r11, qword [r11+rax*8] jmp r11 .LEndippsHMACDuplicate_rmf:
SVD2ada/svd/stm32_svd-adc.ads
JCGobbi/Nucleo-STM32G474RE
0
18965
pragma Style_Checks (Off); -- This spec has been automatically generated from STM32G474xx.svd pragma Restrictions (No_Elaboration_Code); with HAL; with System; package STM32_SVD.ADC is pragma Preelaborate; --------------- -- Registers -- --------------- -- ISR_AWD array type ISR_AWD_Field_Array is array (1 .. 3) of Boolean with Component_Size => 1, Size => 3; -- Type definition for ISR_AWD type ISR_AWD_Field (As_Array : Boolean := False) is record case As_Array is when False => -- AWD as a value Val : HAL.UInt3; when True => -- AWD as an array Arr : ISR_AWD_Field_Array; end case; end record with Unchecked_Union, Size => 3; for ISR_AWD_Field use record Val at 0 range 0 .. 2; Arr at 0 range 0 .. 2; end record; -- interrupt and status register type ISR_Register is record -- ADRDY ADRDY : Boolean := False; -- EOSMP EOSMP : Boolean := False; -- EOC EOC : Boolean := False; -- EOS EOS : Boolean := False; -- OVR OVR : Boolean := False; -- JEOC JEOC : Boolean := False; -- JEOS JEOS : Boolean := False; -- AWD1 AWD : ISR_AWD_Field := (As_Array => False, Val => 16#0#); -- JQOVF JQOVF : Boolean := False; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for ISR_Register use record ADRDY at 0 range 0 .. 0; EOSMP at 0 range 1 .. 1; EOC at 0 range 2 .. 2; EOS at 0 range 3 .. 3; OVR at 0 range 4 .. 4; JEOC at 0 range 5 .. 5; JEOS at 0 range 6 .. 6; AWD at 0 range 7 .. 9; JQOVF at 0 range 10 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; -- interrupt enable register type IER_Register is record -- ADRDYIE ADRDYIE : Boolean := False; -- EOSMPIE EOSMPIE : Boolean := False; -- EOCIE EOCIE : Boolean := False; -- EOSIE EOSIE : Boolean := False; -- OVRIE OVRIE : Boolean := False; -- JEOCIE JEOCIE : Boolean := False; -- JEOSIE JEOSIE : Boolean := False; -- AWD1IE AWD1IE : Boolean := False; -- AWD2IE AWD2IE : Boolean := False; -- AWD3IE AWD3IE : Boolean := False; -- JQOVFIE JQOVFIE : Boolean := False; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for IER_Register use record ADRDYIE at 0 range 0 .. 0; EOSMPIE at 0 range 1 .. 1; EOCIE at 0 range 2 .. 2; EOSIE at 0 range 3 .. 3; OVRIE at 0 range 4 .. 4; JEOCIE at 0 range 5 .. 5; JEOSIE at 0 range 6 .. 6; AWD1IE at 0 range 7 .. 7; AWD2IE at 0 range 8 .. 8; AWD3IE at 0 range 9 .. 9; JQOVFIE at 0 range 10 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; -- control register type CR_Register is record -- ADEN ADEN : Boolean := False; -- ADDIS ADDIS : Boolean := False; -- ADSTART ADSTART : Boolean := False; -- JADSTART JADSTART : Boolean := False; -- ADSTP ADSTP : Boolean := False; -- JADSTP JADSTP : Boolean := False; -- unspecified Reserved_6_27 : HAL.UInt22 := 16#0#; -- ADVREGEN ADVREGEN : Boolean := False; -- DEEPPWD DEEPPWD : Boolean := True; -- ADCALDIF ADCALDIF : Boolean := False; -- ADCAL ADCAL : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CR_Register use record ADEN at 0 range 0 .. 0; ADDIS at 0 range 1 .. 1; ADSTART at 0 range 2 .. 2; JADSTART at 0 range 3 .. 3; ADSTP at 0 range 4 .. 4; JADSTP at 0 range 5 .. 5; Reserved_6_27 at 0 range 6 .. 27; ADVREGEN at 0 range 28 .. 28; DEEPPWD at 0 range 29 .. 29; ADCALDIF at 0 range 30 .. 30; ADCAL at 0 range 31 .. 31; end record; subtype CFGR_RES_Field is HAL.UInt2; subtype CFGR_EXTSEL_Field is HAL.UInt5; subtype CFGR_EXTEN_Field is HAL.UInt2; subtype CFGR_DISCNUM_Field is HAL.UInt3; subtype CFGR_AWD1CH_Field is HAL.UInt5; -- configuration register type CFGR_Register is record -- DMAEN DMAEN : Boolean := False; -- DMACFG DMACFG : Boolean := False; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- RES RES : CFGR_RES_Field := 16#0#; -- External trigger selection for regular group EXTSEL : CFGR_EXTSEL_Field := 16#0#; -- EXTEN EXTEN : CFGR_EXTEN_Field := 16#0#; -- OVRMOD OVRMOD : Boolean := False; -- CONT CONT : Boolean := False; -- AUTDLY AUTDLY : Boolean := False; -- ALIGN ALIGN : Boolean := False; -- DISCEN DISCEN : Boolean := False; -- DISCNUM DISCNUM : CFGR_DISCNUM_Field := 16#0#; -- JDISCEN JDISCEN : Boolean := False; -- JQM JQM : Boolean := False; -- AWD1SGL AWD1SGL : Boolean := False; -- AWD1EN AWD1EN : Boolean := False; -- JAWD1EN JAWD1EN : Boolean := False; -- JAUTO JAUTO : Boolean := False; -- Analog watchdog 1 channel selection AWD1CH : CFGR_AWD1CH_Field := 16#0#; -- Injected Queue disable JQDIS : Boolean := True; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CFGR_Register use record DMAEN at 0 range 0 .. 0; DMACFG at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; RES at 0 range 3 .. 4; EXTSEL at 0 range 5 .. 9; EXTEN at 0 range 10 .. 11; OVRMOD at 0 range 12 .. 12; CONT at 0 range 13 .. 13; AUTDLY at 0 range 14 .. 14; ALIGN at 0 range 15 .. 15; DISCEN at 0 range 16 .. 16; DISCNUM at 0 range 17 .. 19; JDISCEN at 0 range 20 .. 20; JQM at 0 range 21 .. 21; AWD1SGL at 0 range 22 .. 22; AWD1EN at 0 range 23 .. 23; JAWD1EN at 0 range 24 .. 24; JAUTO at 0 range 25 .. 25; AWD1CH at 0 range 26 .. 30; JQDIS at 0 range 31 .. 31; end record; subtype CFGR2_OVSR_Field is HAL.UInt3; subtype CFGR2_OVSS_Field is HAL.UInt4; -- configuration register type CFGR2_Register is record -- DMAEN ROVSE : Boolean := False; -- DMACFG JOVSE : Boolean := False; -- RES OVSR : CFGR2_OVSR_Field := 16#0#; -- ALIGN OVSS : CFGR2_OVSS_Field := 16#0#; -- Triggered Regular Oversampling TROVS : Boolean := False; -- EXTEN ROVSM : Boolean := False; -- unspecified Reserved_11_15 : HAL.UInt5 := 16#0#; -- GCOMP GCOMP : Boolean := False; -- unspecified Reserved_17_24 : HAL.UInt8 := 16#0#; -- SWTRIG SWTRIG : Boolean := False; -- BULB BULB : Boolean := False; -- SMPTRIG SMPTRIG : Boolean := False; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CFGR2_Register use record ROVSE at 0 range 0 .. 0; JOVSE at 0 range 1 .. 1; OVSR at 0 range 2 .. 4; OVSS at 0 range 5 .. 8; TROVS at 0 range 9 .. 9; ROVSM at 0 range 10 .. 10; Reserved_11_15 at 0 range 11 .. 15; GCOMP at 0 range 16 .. 16; Reserved_17_24 at 0 range 17 .. 24; SWTRIG at 0 range 25 .. 25; BULB at 0 range 26 .. 26; SMPTRIG at 0 range 27 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; -- SMPR1_SMP array element subtype SMPR1_SMP_Element is HAL.UInt3; -- SMPR1_SMP array type SMPR1_SMP_Field_Array is array (0 .. 9) of SMPR1_SMP_Element with Component_Size => 3, Size => 30; -- Type definition for SMPR1_SMP type SMPR1_SMP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SMP as a value Val : HAL.UInt30; when True => -- SMP as an array Arr : SMPR1_SMP_Field_Array; end case; end record with Unchecked_Union, Size => 30; for SMPR1_SMP_Field use record Val at 0 range 0 .. 29; Arr at 0 range 0 .. 29; end record; -- sample time register 1 type SMPR1_Register is record -- SMP0 SMP : SMPR1_SMP_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_30_30 : HAL.Bit := 16#0#; -- Addition of one clock cycle to the sampling time SMPPLUS : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SMPR1_Register use record SMP at 0 range 0 .. 29; Reserved_30_30 at 0 range 30 .. 30; SMPPLUS at 0 range 31 .. 31; end record; -- SMPR2_SMP array element subtype SMPR2_SMP_Element is HAL.UInt3; -- SMPR2_SMP array type SMPR2_SMP_Field_Array is array (10 .. 18) of SMPR2_SMP_Element with Component_Size => 3, Size => 27; -- Type definition for SMPR2_SMP type SMPR2_SMP_Field (As_Array : Boolean := False) is record case As_Array is when False => -- SMP as a value Val : HAL.UInt27; when True => -- SMP as an array Arr : SMPR2_SMP_Field_Array; end case; end record with Unchecked_Union, Size => 27; for SMPR2_SMP_Field use record Val at 0 range 0 .. 26; Arr at 0 range 0 .. 26; end record; -- sample time register 2 type SMPR2_Register is record -- SMP10 SMP : SMPR2_SMP_Field := (As_Array => False, Val => 16#0#); -- unspecified Reserved_27_31 : HAL.UInt5 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SMPR2_Register use record SMP at 0 range 0 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; subtype TR1_LT1_Field is HAL.UInt12; subtype TR1_AWDFILT_Field is HAL.UInt3; subtype TR1_HT1_Field is HAL.UInt12; -- watchdog threshold register 1 type TR1_Register is record -- LT1 LT1 : TR1_LT1_Field := 16#0#; -- AWDFILT AWDFILT : TR1_AWDFILT_Field := 16#0#; -- unspecified Reserved_15_15 : HAL.Bit := 16#0#; -- HT1 HT1 : TR1_HT1_Field := 16#FFF#; -- unspecified Reserved_28_31 : HAL.UInt4 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TR1_Register use record LT1 at 0 range 0 .. 11; AWDFILT at 0 range 12 .. 14; Reserved_15_15 at 0 range 15 .. 15; HT1 at 0 range 16 .. 27; Reserved_28_31 at 0 range 28 .. 31; end record; subtype TR2_LT2_Field is HAL.UInt8; subtype TR2_HT2_Field is HAL.UInt8; -- watchdog threshold register type TR2_Register is record -- LT2 LT2 : TR2_LT2_Field := 16#0#; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#0#; -- HT2 HT2 : TR2_HT2_Field := 16#FF#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TR2_Register use record LT2 at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; HT2 at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype TR3_LT3_Field is HAL.UInt8; subtype TR3_HT3_Field is HAL.UInt8; -- watchdog threshold register 3 type TR3_Register is record -- LT3 LT3 : TR3_LT3_Field := 16#0#; -- unspecified Reserved_8_15 : HAL.UInt8 := 16#0#; -- HT3 HT3 : TR3_HT3_Field := 16#FF#; -- unspecified Reserved_24_31 : HAL.UInt8 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for TR3_Register use record LT3 at 0 range 0 .. 7; Reserved_8_15 at 0 range 8 .. 15; HT3 at 0 range 16 .. 23; Reserved_24_31 at 0 range 24 .. 31; end record; subtype SQR1_L_Field is HAL.UInt4; subtype SQR1_SQ1_Field is HAL.UInt5; subtype SQR1_SQ2_Field is HAL.UInt5; subtype SQR1_SQ3_Field is HAL.UInt5; subtype SQR1_SQ4_Field is HAL.UInt5; -- regular sequence register 1 type SQR1_Register is record -- Regular channel sequence length L : SQR1_L_Field := 16#0#; -- unspecified Reserved_4_5 : HAL.UInt2 := 16#0#; -- SQ1 SQ1 : SQR1_SQ1_Field := 16#0#; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- SQ2 SQ2 : SQR1_SQ2_Field := 16#0#; -- unspecified Reserved_17_17 : HAL.Bit := 16#0#; -- SQ3 SQ3 : SQR1_SQ3_Field := 16#0#; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- SQ4 SQ4 : SQR1_SQ4_Field := 16#0#; -- unspecified Reserved_29_31 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SQR1_Register use record L at 0 range 0 .. 3; Reserved_4_5 at 0 range 4 .. 5; SQ1 at 0 range 6 .. 10; Reserved_11_11 at 0 range 11 .. 11; SQ2 at 0 range 12 .. 16; Reserved_17_17 at 0 range 17 .. 17; SQ3 at 0 range 18 .. 22; Reserved_23_23 at 0 range 23 .. 23; SQ4 at 0 range 24 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype SQR2_SQ5_Field is HAL.UInt5; subtype SQR2_SQ6_Field is HAL.UInt5; subtype SQR2_SQ7_Field is HAL.UInt5; subtype SQR2_SQ8_Field is HAL.UInt5; subtype SQR2_SQ9_Field is HAL.UInt5; -- regular sequence register 2 type SQR2_Register is record -- SQ5 SQ5 : SQR2_SQ5_Field := 16#0#; -- unspecified Reserved_5_5 : HAL.Bit := 16#0#; -- SQ6 SQ6 : SQR2_SQ6_Field := 16#0#; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- SQ7 SQ7 : SQR2_SQ7_Field := 16#0#; -- unspecified Reserved_17_17 : HAL.Bit := 16#0#; -- SQ8 SQ8 : SQR2_SQ8_Field := 16#0#; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- SQ9 SQ9 : SQR2_SQ9_Field := 16#0#; -- unspecified Reserved_29_31 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SQR2_Register use record SQ5 at 0 range 0 .. 4; Reserved_5_5 at 0 range 5 .. 5; SQ6 at 0 range 6 .. 10; Reserved_11_11 at 0 range 11 .. 11; SQ7 at 0 range 12 .. 16; Reserved_17_17 at 0 range 17 .. 17; SQ8 at 0 range 18 .. 22; Reserved_23_23 at 0 range 23 .. 23; SQ9 at 0 range 24 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype SQR3_SQ10_Field is HAL.UInt5; subtype SQR3_SQ11_Field is HAL.UInt5; subtype SQR3_SQ12_Field is HAL.UInt5; subtype SQR3_SQ13_Field is HAL.UInt5; subtype SQR3_SQ14_Field is HAL.UInt5; -- regular sequence register 3 type SQR3_Register is record -- SQ10 SQ10 : SQR3_SQ10_Field := 16#0#; -- unspecified Reserved_5_5 : HAL.Bit := 16#0#; -- SQ11 SQ11 : SQR3_SQ11_Field := 16#0#; -- unspecified Reserved_11_11 : HAL.Bit := 16#0#; -- SQ12 SQ12 : SQR3_SQ12_Field := 16#0#; -- unspecified Reserved_17_17 : HAL.Bit := 16#0#; -- SQ13 SQ13 : SQR3_SQ13_Field := 16#0#; -- unspecified Reserved_23_23 : HAL.Bit := 16#0#; -- SQ14 SQ14 : SQR3_SQ14_Field := 16#0#; -- unspecified Reserved_29_31 : HAL.UInt3 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SQR3_Register use record SQ10 at 0 range 0 .. 4; Reserved_5_5 at 0 range 5 .. 5; SQ11 at 0 range 6 .. 10; Reserved_11_11 at 0 range 11 .. 11; SQ12 at 0 range 12 .. 16; Reserved_17_17 at 0 range 17 .. 17; SQ13 at 0 range 18 .. 22; Reserved_23_23 at 0 range 23 .. 23; SQ14 at 0 range 24 .. 28; Reserved_29_31 at 0 range 29 .. 31; end record; subtype SQR4_SQ15_Field is HAL.UInt5; subtype SQR4_SQ16_Field is HAL.UInt5; -- regular sequence register 4 type SQR4_Register is record -- SQ15 SQ15 : SQR4_SQ15_Field := 16#0#; -- unspecified Reserved_5_5 : HAL.Bit := 16#0#; -- SQ16 SQ16 : SQR4_SQ16_Field := 16#0#; -- unspecified Reserved_11_31 : HAL.UInt21 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for SQR4_Register use record SQ15 at 0 range 0 .. 4; Reserved_5_5 at 0 range 5 .. 5; SQ16 at 0 range 6 .. 10; Reserved_11_31 at 0 range 11 .. 31; end record; subtype DR_RDATA_Field is HAL.UInt16; -- regular Data Register type DR_Register is record -- Read-only. Regular Data converted RDATA : DR_RDATA_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for DR_Register use record RDATA at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype JSQR_JL_Field is HAL.UInt2; subtype JSQR_JEXTSEL_Field is HAL.UInt5; subtype JSQR_JEXTEN_Field is HAL.UInt2; subtype JSQR_JSQ1_Field is HAL.UInt5; subtype JSQR_JSQ2_Field is HAL.UInt5; subtype JSQR_JSQ3_Field is HAL.UInt5; subtype JSQR_JSQ4_Field is HAL.UInt5; -- injected sequence register type JSQR_Register is record -- JL JL : JSQR_JL_Field := 16#0#; -- JEXTSEL JEXTSEL : JSQR_JEXTSEL_Field := 16#0#; -- JEXTEN JEXTEN : JSQR_JEXTEN_Field := 16#0#; -- JSQ1 JSQ1 : JSQR_JSQ1_Field := 16#0#; -- unspecified Reserved_14_14 : HAL.Bit := 16#0#; -- JSQ2 JSQ2 : JSQR_JSQ2_Field := 16#0#; -- unspecified Reserved_20_20 : HAL.Bit := 16#0#; -- JSQ3 JSQ3 : JSQR_JSQ3_Field := 16#0#; -- unspecified Reserved_26_26 : HAL.Bit := 16#0#; -- JSQ4 JSQ4 : JSQR_JSQ4_Field := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for JSQR_Register use record JL at 0 range 0 .. 1; JEXTSEL at 0 range 2 .. 6; JEXTEN at 0 range 7 .. 8; JSQ1 at 0 range 9 .. 13; Reserved_14_14 at 0 range 14 .. 14; JSQ2 at 0 range 15 .. 19; Reserved_20_20 at 0 range 20 .. 20; JSQ3 at 0 range 21 .. 25; Reserved_26_26 at 0 range 26 .. 26; JSQ4 at 0 range 27 .. 31; end record; subtype OFR_OFFSET1_Field is HAL.UInt12; subtype OFR_OFFSET1_CH_Field is HAL.UInt5; -- offset register 1 type OFR_Register is record -- OFFSET1 OFFSET1 : OFR_OFFSET1_Field := 16#0#; -- unspecified Reserved_12_23 : HAL.UInt12 := 16#0#; -- OFFSETPOS OFFSETPOS : Boolean := False; -- SATEN SATEN : Boolean := False; -- OFFSET1_CH OFFSET1_CH : OFR_OFFSET1_CH_Field := 16#0#; -- OFFSET1_EN OFFSET1_EN : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for OFR_Register use record OFFSET1 at 0 range 0 .. 11; Reserved_12_23 at 0 range 12 .. 23; OFFSETPOS at 0 range 24 .. 24; SATEN at 0 range 25 .. 25; OFFSET1_CH at 0 range 26 .. 30; OFFSET1_EN at 0 range 31 .. 31; end record; subtype OFR2_OFFSET2_Field is HAL.UInt12; subtype OFR2_OFFSET2_CH_Field is HAL.UInt5; -- offset register 2 type OFR2_Register is record -- OFFSET1 OFFSET2 : OFR2_OFFSET2_Field := 16#0#; -- unspecified Reserved_12_23 : HAL.UInt12 := 16#0#; -- OFFSETPOS OFFSETPOS : Boolean := False; -- SATEN SATEN : Boolean := False; -- OFFSET1_CH OFFSET2_CH : OFR2_OFFSET2_CH_Field := 16#0#; -- OFFSET1_EN OFFSET2_EN : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for OFR2_Register use record OFFSET2 at 0 range 0 .. 11; Reserved_12_23 at 0 range 12 .. 23; OFFSETPOS at 0 range 24 .. 24; SATEN at 0 range 25 .. 25; OFFSET2_CH at 0 range 26 .. 30; OFFSET2_EN at 0 range 31 .. 31; end record; subtype OFR3_OFFSET3_Field is HAL.UInt12; subtype OFR3_OFFSET3_CH_Field is HAL.UInt5; -- offset register 3 type OFR3_Register is record -- OFFSET1 OFFSET3 : OFR3_OFFSET3_Field := 16#0#; -- unspecified Reserved_12_23 : HAL.UInt12 := 16#0#; -- OFFSETPOS OFFSETPOS : Boolean := False; -- SATEN SATEN : Boolean := False; -- OFFSET1_CH OFFSET3_CH : OFR3_OFFSET3_CH_Field := 16#0#; -- OFFSET1_EN OFFSET3_EN : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for OFR3_Register use record OFFSET3 at 0 range 0 .. 11; Reserved_12_23 at 0 range 12 .. 23; OFFSETPOS at 0 range 24 .. 24; SATEN at 0 range 25 .. 25; OFFSET3_CH at 0 range 26 .. 30; OFFSET3_EN at 0 range 31 .. 31; end record; subtype OFR4_OFFSET4_Field is HAL.UInt12; subtype OFR4_OFFSET4_CH_Field is HAL.UInt5; -- offset register 4 type OFR4_Register is record -- OFFSET1 OFFSET4 : OFR4_OFFSET4_Field := 16#0#; -- unspecified Reserved_12_23 : HAL.UInt12 := 16#0#; -- OFFSETPOS OFFSETPOS : Boolean := False; -- SATEN SATEN : Boolean := False; -- OFFSET1_CH OFFSET4_CH : OFR4_OFFSET4_CH_Field := 16#0#; -- OFFSET1_EN OFFSET4_EN : Boolean := False; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for OFR4_Register use record OFFSET4 at 0 range 0 .. 11; Reserved_12_23 at 0 range 12 .. 23; OFFSETPOS at 0 range 24 .. 24; SATEN at 0 range 25 .. 25; OFFSET4_CH at 0 range 26 .. 30; OFFSET4_EN at 0 range 31 .. 31; end record; subtype JDR1_JDATA1_Field is HAL.UInt16; -- injected data register 1 type JDR1_Register is record -- Read-only. JDATA1 JDATA1 : JDR1_JDATA1_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for JDR1_Register use record JDATA1 at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype JDR2_JDATA2_Field is HAL.UInt16; -- injected data register 2 type JDR2_Register is record -- Read-only. JDATA2 JDATA2 : JDR2_JDATA2_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for JDR2_Register use record JDATA2 at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype JDR3_JDATA3_Field is HAL.UInt16; -- injected data register 3 type JDR3_Register is record -- Read-only. JDATA3 JDATA3 : JDR3_JDATA3_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for JDR3_Register use record JDATA3 at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype JDR4_JDATA4_Field is HAL.UInt16; -- injected data register 4 type JDR4_Register is record -- Read-only. JDATA4 JDATA4 : JDR4_JDATA4_Field; -- unspecified Reserved_16_31 : HAL.UInt16; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for JDR4_Register use record JDATA4 at 0 range 0 .. 15; Reserved_16_31 at 0 range 16 .. 31; end record; subtype AWD2CR_AWD2CH_Field is HAL.UInt19; -- Analog Watchdog 2 Configuration Register type AWD2CR_Register is record -- AWD2CH AWD2CH : AWD2CR_AWD2CH_Field := 16#0#; -- unspecified Reserved_19_31 : HAL.UInt13 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for AWD2CR_Register use record AWD2CH at 0 range 0 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; subtype AWD3CR_AWD3CH_Field is HAL.UInt19; -- Analog Watchdog 3 Configuration Register type AWD3CR_Register is record -- AWD3CH AWD3CH : AWD3CR_AWD3CH_Field := 16#0#; -- unspecified Reserved_19_31 : HAL.UInt13 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for AWD3CR_Register use record AWD3CH at 0 range 0 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; subtype DIFSEL_DIFSEL_1_18_Field is HAL.UInt18; -- Differential Mode Selection Register 2 type DIFSEL_Register is record -- Read-only. Differential mode for channels 0 DIFSEL_0 : Boolean := False; -- Differential mode for channels 15 to 1 DIFSEL_1_18 : DIFSEL_DIFSEL_1_18_Field := 16#0#; -- unspecified Reserved_19_31 : HAL.UInt13 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for DIFSEL_Register use record DIFSEL_0 at 0 range 0 .. 0; DIFSEL_1_18 at 0 range 1 .. 18; Reserved_19_31 at 0 range 19 .. 31; end record; subtype CALFACT_CALFACT_S_Field is HAL.UInt7; subtype CALFACT_CALFACT_D_Field is HAL.UInt7; -- Calibration Factors type CALFACT_Register is record -- CALFACT_S CALFACT_S : CALFACT_CALFACT_S_Field := 16#0#; -- unspecified Reserved_7_15 : HAL.UInt9 := 16#0#; -- CALFACT_D CALFACT_D : CALFACT_CALFACT_D_Field := 16#0#; -- unspecified Reserved_23_31 : HAL.UInt9 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CALFACT_Register use record CALFACT_S at 0 range 0 .. 6; Reserved_7_15 at 0 range 7 .. 15; CALFACT_D at 0 range 16 .. 22; Reserved_23_31 at 0 range 23 .. 31; end record; subtype GCOMP_GCOMPCOEFF_Field is HAL.UInt14; -- Gain compensation Register type GCOMP_Register is record -- GCOMPCOEFF GCOMPCOEFF : GCOMP_GCOMPCOEFF_Field := 16#0#; -- unspecified Reserved_14_31 : HAL.UInt18 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for GCOMP_Register use record GCOMPCOEFF at 0 range 0 .. 13; Reserved_14_31 at 0 range 14 .. 31; end record; -- ADC Common status register type CSR_Register is record -- Read-only. ADDRDY_MST ADDRDY_MST : Boolean; -- Read-only. EOSMP_MST EOSMP_MST : Boolean; -- Read-only. EOC_MST EOC_MST : Boolean; -- Read-only. EOS_MST EOS_MST : Boolean; -- Read-only. OVR_MST OVR_MST : Boolean; -- Read-only. JEOC_MST JEOC_MST : Boolean; -- Read-only. JEOS_MST JEOS_MST : Boolean; -- Read-only. AWD1_MST AWD1_MST : Boolean; -- Read-only. AWD2_MST AWD2_MST : Boolean; -- Read-only. AWD3_MST AWD3_MST : Boolean; -- Read-only. JQOVF_MST JQOVF_MST : Boolean; -- unspecified Reserved_11_15 : HAL.UInt5; -- Read-only. ADRDY_SLV ADRDY_SLV : Boolean; -- Read-only. EOSMP_SLV EOSMP_SLV : Boolean; -- Read-only. End of regular conversion of the slave ADC EOC_SLV : Boolean; -- Read-only. End of regular sequence flag of the slave ADC EOS_SLV : Boolean; -- Read-only. Overrun flag of the slave ADC OVR_SLV : Boolean; -- Read-only. End of injected conversion flag of the slave ADC JEOC_SLV : Boolean; -- Read-only. End of injected sequence flag of the slave ADC JEOS_SLV : Boolean; -- Read-only. Analog watchdog 1 flag of the slave ADC AWD1_SLV : Boolean; -- Read-only. Analog watchdog 2 flag of the slave ADC AWD2_SLV : Boolean; -- Read-only. Analog watchdog 3 flag of the slave ADC AWD3_SLV : Boolean; -- Read-only. Injected Context Queue Overflow flag of the slave ADC JQOVF_SLV : Boolean; -- unspecified Reserved_27_31 : HAL.UInt5; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CSR_Register use record ADDRDY_MST at 0 range 0 .. 0; EOSMP_MST at 0 range 1 .. 1; EOC_MST at 0 range 2 .. 2; EOS_MST at 0 range 3 .. 3; OVR_MST at 0 range 4 .. 4; JEOC_MST at 0 range 5 .. 5; JEOS_MST at 0 range 6 .. 6; AWD1_MST at 0 range 7 .. 7; AWD2_MST at 0 range 8 .. 8; AWD3_MST at 0 range 9 .. 9; JQOVF_MST at 0 range 10 .. 10; Reserved_11_15 at 0 range 11 .. 15; ADRDY_SLV at 0 range 16 .. 16; EOSMP_SLV at 0 range 17 .. 17; EOC_SLV at 0 range 18 .. 18; EOS_SLV at 0 range 19 .. 19; OVR_SLV at 0 range 20 .. 20; JEOC_SLV at 0 range 21 .. 21; JEOS_SLV at 0 range 22 .. 22; AWD1_SLV at 0 range 23 .. 23; AWD2_SLV at 0 range 24 .. 24; AWD3_SLV at 0 range 25 .. 25; JQOVF_SLV at 0 range 26 .. 26; Reserved_27_31 at 0 range 27 .. 31; end record; subtype CCR_DUAL_Field is HAL.UInt5; subtype CCR_DELAY_Field is HAL.UInt4; subtype CCR_MDMA_Field is HAL.UInt2; subtype CCR_CKMODE_Field is HAL.UInt2; subtype CCR_PRESC_Field is HAL.UInt4; -- ADC common control register type CCR_Register is record -- Dual ADC mode selection DUAL : CCR_DUAL_Field := 16#0#; -- unspecified Reserved_5_7 : HAL.UInt3 := 16#0#; -- Delay between 2 sampling phases DELAY_k : CCR_DELAY_Field := 16#0#; -- unspecified Reserved_12_12 : HAL.Bit := 16#0#; -- DMA configuration (for multi-ADC mode) DMACFG : Boolean := False; -- Direct memory access mode for multi ADC mode MDMA : CCR_MDMA_Field := 16#0#; -- ADC clock mode CKMODE : CCR_CKMODE_Field := 16#0#; -- ADC prescaler PRESC : CCR_PRESC_Field := 16#0#; -- VREFINT enable VREFEN : Boolean := False; -- VTS selection VSENSESEL : Boolean := False; -- VBAT selection VBATSEL : Boolean := False; -- unspecified Reserved_25_31 : HAL.UInt7 := 16#0#; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CCR_Register use record DUAL at 0 range 0 .. 4; Reserved_5_7 at 0 range 5 .. 7; DELAY_k at 0 range 8 .. 11; Reserved_12_12 at 0 range 12 .. 12; DMACFG at 0 range 13 .. 13; MDMA at 0 range 14 .. 15; CKMODE at 0 range 16 .. 17; PRESC at 0 range 18 .. 21; VREFEN at 0 range 22 .. 22; VSENSESEL at 0 range 23 .. 23; VBATSEL at 0 range 24 .. 24; Reserved_25_31 at 0 range 25 .. 31; end record; subtype CDR_RDATA_MST_Field is HAL.UInt16; subtype CDR_RDATA_SLV_Field is HAL.UInt16; -- ADC common regular data register for dual and triple modes type CDR_Register is record -- Read-only. Regular data of the master ADC RDATA_MST : CDR_RDATA_MST_Field; -- Read-only. Regular data of the slave ADC RDATA_SLV : CDR_RDATA_SLV_Field; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CDR_Register use record RDATA_MST at 0 range 0 .. 15; RDATA_SLV at 0 range 16 .. 31; end record; subtype CFGR_EXTSEL_Field_1 is HAL.UInt4; subtype CFGR_AWDCH1CH_Field is HAL.UInt5; -- configuration register type CFGR_Register_1 is record -- DMAEN DMAEN : Boolean := False; -- DMACFG DMACFG : Boolean := False; -- unspecified Reserved_2_2 : HAL.Bit := 16#0#; -- RES RES : CFGR_RES_Field := 16#0#; -- ALIGN_5 ALIGN_5 : Boolean := False; -- EXTSEL EXTSEL : CFGR_EXTSEL_Field_1 := 16#0#; -- EXTEN EXTEN : CFGR_EXTEN_Field := 16#0#; -- OVRMOD OVRMOD : Boolean := False; -- CONT CONT : Boolean := False; -- AUTDLY AUTDLY : Boolean := False; -- ALIGN ALIGN : Boolean := False; -- DISCEN DISCEN : Boolean := False; -- DISCNUM DISCNUM : CFGR_DISCNUM_Field := 16#0#; -- JDISCEN JDISCEN : Boolean := False; -- JQM JQM : Boolean := False; -- AWD1SGL AWD1SGL : Boolean := False; -- AWD1EN AWD1EN : Boolean := False; -- JAWD1EN JAWD1EN : Boolean := False; -- JAUTO JAUTO : Boolean := False; -- AWDCH1CH AWDCH1CH : CFGR_AWDCH1CH_Field := 16#0#; -- Injected Queue disable JQDIS : Boolean := True; end record with Volatile_Full_Access, Object_Size => 32, Bit_Order => System.Low_Order_First; for CFGR_Register_1 use record DMAEN at 0 range 0 .. 0; DMACFG at 0 range 1 .. 1; Reserved_2_2 at 0 range 2 .. 2; RES at 0 range 3 .. 4; ALIGN_5 at 0 range 5 .. 5; EXTSEL at 0 range 6 .. 9; EXTEN at 0 range 10 .. 11; OVRMOD at 0 range 12 .. 12; CONT at 0 range 13 .. 13; AUTDLY at 0 range 14 .. 14; ALIGN at 0 range 15 .. 15; DISCEN at 0 range 16 .. 16; DISCNUM at 0 range 17 .. 19; JDISCEN at 0 range 20 .. 20; JQM at 0 range 21 .. 21; AWD1SGL at 0 range 22 .. 22; AWD1EN at 0 range 23 .. 23; JAWD1EN at 0 range 24 .. 24; JAUTO at 0 range 25 .. 25; AWDCH1CH at 0 range 26 .. 30; JQDIS at 0 range 31 .. 31; end record; ----------------- -- Peripherals -- ----------------- -- Analog-to-Digital Converter type ADC1_Peripheral is record -- interrupt and status register ISR : aliased ISR_Register; -- interrupt enable register IER : aliased IER_Register; -- control register CR : aliased CR_Register; -- configuration register CFGR : aliased CFGR_Register; -- configuration register CFGR2 : aliased CFGR2_Register; -- sample time register 1 SMPR1 : aliased SMPR1_Register; -- sample time register 2 SMPR2 : aliased SMPR2_Register; -- watchdog threshold register 1 TR1 : aliased TR1_Register; -- watchdog threshold register TR2 : aliased TR2_Register; -- watchdog threshold register 3 TR3 : aliased TR3_Register; -- regular sequence register 1 SQR1 : aliased SQR1_Register; -- regular sequence register 2 SQR2 : aliased SQR2_Register; -- regular sequence register 3 SQR3 : aliased SQR3_Register; -- regular sequence register 4 SQR4 : aliased SQR4_Register; -- regular Data Register DR : aliased DR_Register; -- injected sequence register JSQR : aliased JSQR_Register; -- offset register 1 OFR1 : aliased OFR_Register; -- offset register 2 OFR2 : aliased OFR2_Register; -- offset register 3 OFR3 : aliased OFR3_Register; -- offset register 4 OFR4 : aliased OFR4_Register; -- injected data register 1 JDR1 : aliased JDR1_Register; -- injected data register 2 JDR2 : aliased JDR2_Register; -- injected data register 3 JDR3 : aliased JDR3_Register; -- injected data register 4 JDR4 : aliased JDR4_Register; -- Analog Watchdog 2 Configuration Register AWD2CR : aliased AWD2CR_Register; -- Analog Watchdog 3 Configuration Register AWD3CR : aliased AWD3CR_Register; -- Differential Mode Selection Register 2 DIFSEL : aliased DIFSEL_Register; -- Calibration Factors CALFACT : aliased CALFACT_Register; -- Gain compensation Register GCOMP : aliased GCOMP_Register; end record with Volatile; for ADC1_Peripheral use record ISR at 16#0# range 0 .. 31; IER at 16#4# range 0 .. 31; CR at 16#8# range 0 .. 31; CFGR at 16#C# range 0 .. 31; CFGR2 at 16#10# range 0 .. 31; SMPR1 at 16#14# range 0 .. 31; SMPR2 at 16#18# range 0 .. 31; TR1 at 16#20# range 0 .. 31; TR2 at 16#24# range 0 .. 31; TR3 at 16#28# range 0 .. 31; SQR1 at 16#30# range 0 .. 31; SQR2 at 16#34# range 0 .. 31; SQR3 at 16#38# range 0 .. 31; SQR4 at 16#3C# range 0 .. 31; DR at 16#40# range 0 .. 31; JSQR at 16#4C# range 0 .. 31; OFR1 at 16#60# range 0 .. 31; OFR2 at 16#64# range 0 .. 31; OFR3 at 16#68# range 0 .. 31; OFR4 at 16#6C# range 0 .. 31; JDR1 at 16#80# range 0 .. 31; JDR2 at 16#84# range 0 .. 31; JDR3 at 16#88# range 0 .. 31; JDR4 at 16#8C# range 0 .. 31; AWD2CR at 16#A0# range 0 .. 31; AWD3CR at 16#A4# range 0 .. 31; DIFSEL at 16#B0# range 0 .. 31; CALFACT at 16#B4# range 0 .. 31; GCOMP at 16#C0# range 0 .. 31; end record; -- Analog-to-Digital Converter ADC1_Periph : aliased ADC1_Peripheral with Import, Address => ADC1_Base; -- Analog-to-Digital Converter ADC2_Periph : aliased ADC1_Peripheral with Import, Address => ADC2_Base; -- Analog-to-Digital Converter ADC4_Periph : aliased ADC1_Peripheral with Import, Address => ADC4_Base; -- Analog-to-Digital Converter type ADC12_Common_Peripheral is record -- ADC Common status register CSR : aliased CSR_Register; -- ADC common control register CCR : aliased CCR_Register; -- ADC common regular data register for dual and triple modes CDR : aliased CDR_Register; end record with Volatile; for ADC12_Common_Peripheral use record CSR at 16#0# range 0 .. 31; CCR at 16#8# range 0 .. 31; CDR at 16#C# range 0 .. 31; end record; -- Analog-to-Digital Converter ADC12_Common_Periph : aliased ADC12_Common_Peripheral with Import, Address => ADC12_Common_Base; -- Analog-to-Digital Converter ADC345_Common_Periph : aliased ADC12_Common_Peripheral with Import, Address => ADC345_Common_Base; -- Analog-to-Digital Converter type ADC3_Peripheral is record -- interrupt and status register ISR : aliased ISR_Register; -- interrupt enable register IER : aliased IER_Register; -- control register CR : aliased CR_Register; -- configuration register CFGR : aliased CFGR_Register_1; -- configuration register CFGR2 : aliased CFGR2_Register; -- sample time register 1 SMPR1 : aliased SMPR1_Register; -- sample time register 2 SMPR2 : aliased SMPR2_Register; -- watchdog threshold register 1 TR1 : aliased TR1_Register; -- watchdog threshold register TR2 : aliased TR2_Register; -- watchdog threshold register 3 TR3 : aliased TR3_Register; -- regular sequence register 1 SQR1 : aliased SQR1_Register; -- regular sequence register 2 SQR2 : aliased SQR2_Register; -- regular sequence register 3 SQR3 : aliased SQR3_Register; -- regular sequence register 4 SQR4 : aliased SQR4_Register; -- regular Data Register DR : aliased DR_Register; -- injected sequence register JSQR : aliased JSQR_Register; -- offset register 1 OFR1 : aliased OFR_Register; -- offset register 2 OFR2 : aliased OFR_Register; -- offset register 3 OFR3 : aliased OFR_Register; -- offset register 4 OFR4 : aliased OFR_Register; -- injected data register 1 JDR1 : aliased JDR1_Register; -- injected data register 2 JDR2 : aliased JDR2_Register; -- injected data register 3 JDR3 : aliased JDR3_Register; -- injected data register 4 JDR4 : aliased JDR4_Register; -- Analog Watchdog 2 Configuration Register AWD2CR : aliased AWD2CR_Register; -- Analog Watchdog 3 Configuration Register AWD3CR : aliased AWD3CR_Register; -- Differential Mode Selection Register 2 DIFSEL : aliased DIFSEL_Register; -- Calibration Factors CALFACT : aliased CALFACT_Register; -- Gain compensation Register GCOMP : aliased GCOMP_Register; end record with Volatile; for ADC3_Peripheral use record ISR at 16#0# range 0 .. 31; IER at 16#4# range 0 .. 31; CR at 16#8# range 0 .. 31; CFGR at 16#C# range 0 .. 31; CFGR2 at 16#10# range 0 .. 31; SMPR1 at 16#14# range 0 .. 31; SMPR2 at 16#18# range 0 .. 31; TR1 at 16#20# range 0 .. 31; TR2 at 16#24# range 0 .. 31; TR3 at 16#28# range 0 .. 31; SQR1 at 16#30# range 0 .. 31; SQR2 at 16#34# range 0 .. 31; SQR3 at 16#38# range 0 .. 31; SQR4 at 16#3C# range 0 .. 31; DR at 16#40# range 0 .. 31; JSQR at 16#4C# range 0 .. 31; OFR1 at 16#60# range 0 .. 31; OFR2 at 16#64# range 0 .. 31; OFR3 at 16#68# range 0 .. 31; OFR4 at 16#6C# range 0 .. 31; JDR1 at 16#80# range 0 .. 31; JDR2 at 16#84# range 0 .. 31; JDR3 at 16#88# range 0 .. 31; JDR4 at 16#8C# range 0 .. 31; AWD2CR at 16#A0# range 0 .. 31; AWD3CR at 16#A4# range 0 .. 31; DIFSEL at 16#B0# range 0 .. 31; CALFACT at 16#B4# range 0 .. 31; GCOMP at 16#C0# range 0 .. 31; end record; -- Analog-to-Digital Converter ADC3_Periph : aliased ADC3_Peripheral with Import, Address => ADC3_Base; -- Analog-to-Digital Converter ADC5_Periph : aliased ADC3_Peripheral with Import, Address => ADC5_Base; end STM32_SVD.ADC;
ShowDrive-main.scpt
chris1111/Show-Drive
1
2148
set theAction to button returned of (display dialog " Show or Hide Disks ➤ (Internal - External) ----------------------------------------- " with icon alias ((path to me) & "Contents:Resources:AppIcon.icns:" as string) buttons {"Quit", "Show", "Hide"} default button {"Show"}) if theAction = "Show" then do shell script "defaults write com.apple.Finder ShowHardDrivesOnDesktop TRUE" do shell script "defaults write com.apple.Finder ShowExternalHardDrivesOnDesktop TRUE" delay 1 do shell script "killall Finder" end if if theAction = "Hide" then do shell script "defaults write com.apple.Finder ShowHardDrivesOnDesktop FALSE" do shell script "defaults write com.apple.Finder ShowExternalHardDrivesOnDesktop FALSE" delay 1 do shell script "killall Finder" end if if theAction = "Quit" then end if
oeis/322/A322780.asm
neoneye/loda-programs
11
16093
<reponame>neoneye/loda-programs ; A322780: First differences of A237262. ; Submitted by <NAME> ; 1,4,9,32,71,252,559,1984,4401,15620,34649,122976,272791,968188,2147679,7622528,16908641,60012036,133121449,472473760,1048062951,3719778044,8251382159,29285750592,64962994321,230566226692,511452572409,1815244062944,4026657584951,14291386276860,31701808107199,112515846151936,249587807272641,885835382938628,1965000650073929,6974167217357088,15470417393318791,54907502355918076,121798338496476399,432285851629987520,958916290578492401,3403379310683982084,7549531986131462809,26794748633841869152 mov $3,1 lpb $0 sub $0,$3 add $4,1 add $4,$2 mov $1,$4 dif $1,2 dif $1,2 add $2,$1 add $4,$2 lpe add $2,$4 mov $0,$2 add $0,1
grep.asm
joeofportland/project4final
0
81705
<filename>grep.asm _grep: file format elf32-i386 Disassembly of section .text: 00000000 <grep>: char buf[1024]; int match(char*, char*); void grep(char *pattern, int fd) { 0: 55 push %ebp 1: 89 e5 mov %esp,%ebp 3: 83 ec 28 sub $0x28,%esp int n, m; char *p, *q; m = 0; 6: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp) while((n = read(fd, buf+m, sizeof(buf)-m-1)) > 0){ d: e9 c6 00 00 00 jmp d8 <grep+0xd8> m += n; 12: 8b 45 ec mov -0x14(%ebp),%eax 15: 01 45 f4 add %eax,-0xc(%ebp) buf[m] = '\0'; 18: 8b 45 f4 mov -0xc(%ebp),%eax 1b: 05 a0 0e 00 00 add $0xea0,%eax 20: c6 00 00 movb $0x0,(%eax) p = buf; 23: c7 45 f0 a0 0e 00 00 movl $0xea0,-0x10(%ebp) while((q = strchr(p, '\n')) != 0){ 2a: eb 51 jmp 7d <grep+0x7d> *q = 0; 2c: 8b 45 e8 mov -0x18(%ebp),%eax 2f: c6 00 00 movb $0x0,(%eax) if(match(pattern, p)){ 32: 8b 45 f0 mov -0x10(%ebp),%eax 35: 89 44 24 04 mov %eax,0x4(%esp) 39: 8b 45 08 mov 0x8(%ebp),%eax 3c: 89 04 24 mov %eax,(%esp) 3f: e8 bc 01 00 00 call 200 <match> 44: 85 c0 test %eax,%eax 46: 74 2c je 74 <grep+0x74> *q = '\n'; 48: 8b 45 e8 mov -0x18(%ebp),%eax 4b: c6 00 0a movb $0xa,(%eax) write(1, p, q+1 - p); 4e: 8b 45 e8 mov -0x18(%ebp),%eax 51: 83 c0 01 add $0x1,%eax 54: 89 c2 mov %eax,%edx 56: 8b 45 f0 mov -0x10(%ebp),%eax 59: 29 c2 sub %eax,%edx 5b: 89 d0 mov %edx,%eax 5d: 89 44 24 08 mov %eax,0x8(%esp) 61: 8b 45 f0 mov -0x10(%ebp),%eax 64: 89 44 24 04 mov %eax,0x4(%esp) 68: c7 04 24 01 00 00 00 movl $0x1,(%esp) 6f: e8 74 05 00 00 call 5e8 <write> } p = q+1; 74: 8b 45 e8 mov -0x18(%ebp),%eax 77: 83 c0 01 add $0x1,%eax 7a: 89 45 f0 mov %eax,-0x10(%ebp) m = 0; while((n = read(fd, buf+m, sizeof(buf)-m-1)) > 0){ m += n; buf[m] = '\0'; p = buf; while((q = strchr(p, '\n')) != 0){ 7d: c7 44 24 04 0a 00 00 movl $0xa,0x4(%esp) 84: 00 85: 8b 45 f0 mov -0x10(%ebp),%eax 88: 89 04 24 mov %eax,(%esp) 8b: e8 af 03 00 00 call 43f <strchr> 90: 89 45 e8 mov %eax,-0x18(%ebp) 93: 83 7d e8 00 cmpl $0x0,-0x18(%ebp) 97: 75 93 jne 2c <grep+0x2c> *q = '\n'; write(1, p, q+1 - p); } p = q+1; } if(p == buf) 99: 81 7d f0 a0 0e 00 00 cmpl $0xea0,-0x10(%ebp) a0: 75 07 jne a9 <grep+0xa9> m = 0; a2: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp) if(m > 0){ a9: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) ad: 7e 29 jle d8 <grep+0xd8> m -= p - buf; af: ba a0 0e 00 00 mov $0xea0,%edx b4: 8b 45 f0 mov -0x10(%ebp),%eax b7: 29 c2 sub %eax,%edx b9: 89 d0 mov %edx,%eax bb: 01 45 f4 add %eax,-0xc(%ebp) memmove(buf, p, m); be: 8b 45 f4 mov -0xc(%ebp),%eax c1: 89 44 24 08 mov %eax,0x8(%esp) c5: 8b 45 f0 mov -0x10(%ebp),%eax c8: 89 44 24 04 mov %eax,0x4(%esp) cc: c7 04 24 a0 0e 00 00 movl $0xea0,(%esp) d3: e8 ab 04 00 00 call 583 <memmove> { int n, m; char *p, *q; m = 0; while((n = read(fd, buf+m, sizeof(buf)-m-1)) > 0){ d8: 8b 45 f4 mov -0xc(%ebp),%eax db: ba ff 03 00 00 mov $0x3ff,%edx e0: 29 c2 sub %eax,%edx e2: 89 d0 mov %edx,%eax e4: 8b 55 f4 mov -0xc(%ebp),%edx e7: 81 c2 a0 0e 00 00 add $0xea0,%edx ed: 89 44 24 08 mov %eax,0x8(%esp) f1: 89 54 24 04 mov %edx,0x4(%esp) f5: 8b 45 0c mov 0xc(%ebp),%eax f8: 89 04 24 mov %eax,(%esp) fb: e8 e0 04 00 00 call 5e0 <read> 100: 89 45 ec mov %eax,-0x14(%ebp) 103: 83 7d ec 00 cmpl $0x0,-0x14(%ebp) 107: 0f 8f 05 ff ff ff jg 12 <grep+0x12> if(m > 0){ m -= p - buf; memmove(buf, p, m); } } } 10d: c9 leave 10e: c3 ret 0000010f <main>: int main(int argc, char *argv[]) { 10f: 55 push %ebp 110: 89 e5 mov %esp,%ebp 112: 83 e4 f0 and $0xfffffff0,%esp 115: 83 ec 20 sub $0x20,%esp int fd, i; char *pattern; if(argc <= 1){ 118: 83 7d 08 01 cmpl $0x1,0x8(%ebp) 11c: 7f 19 jg 137 <main+0x28> printf(2, "usage: grep pattern [file ...]\n"); 11e: c7 44 24 04 5c 0b 00 movl $0xb5c,0x4(%esp) 125: 00 126: c7 04 24 02 00 00 00 movl $0x2,(%esp) 12d: e8 5e 06 00 00 call 790 <printf> exit(); 132: e8 91 04 00 00 call 5c8 <exit> } pattern = argv[1]; 137: 8b 45 0c mov 0xc(%ebp),%eax 13a: 8b 40 04 mov 0x4(%eax),%eax 13d: 89 44 24 18 mov %eax,0x18(%esp) if(argc <= 2){ 141: 83 7d 08 02 cmpl $0x2,0x8(%ebp) 145: 7f 19 jg 160 <main+0x51> grep(pattern, 0); 147: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp) 14e: 00 14f: 8b 44 24 18 mov 0x18(%esp),%eax 153: 89 04 24 mov %eax,(%esp) 156: e8 a5 fe ff ff call 0 <grep> exit(); 15b: e8 68 04 00 00 call 5c8 <exit> } for(i = 2; i < argc; i++){ 160: c7 44 24 1c 02 00 00 movl $0x2,0x1c(%esp) 167: 00 168: e9 81 00 00 00 jmp 1ee <main+0xdf> if((fd = open(argv[i], 0)) < 0){ 16d: 8b 44 24 1c mov 0x1c(%esp),%eax 171: 8d 14 85 00 00 00 00 lea 0x0(,%eax,4),%edx 178: 8b 45 0c mov 0xc(%ebp),%eax 17b: 01 d0 add %edx,%eax 17d: 8b 00 mov (%eax),%eax 17f: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp) 186: 00 187: 89 04 24 mov %eax,(%esp) 18a: e8 79 04 00 00 call 608 <open> 18f: 89 44 24 14 mov %eax,0x14(%esp) 193: 83 7c 24 14 00 cmpl $0x0,0x14(%esp) 198: 79 2f jns 1c9 <main+0xba> printf(1, "grep: cannot open %s\n", argv[i]); 19a: 8b 44 24 1c mov 0x1c(%esp),%eax 19e: 8d 14 85 00 00 00 00 lea 0x0(,%eax,4),%edx 1a5: 8b 45 0c mov 0xc(%ebp),%eax 1a8: 01 d0 add %edx,%eax 1aa: 8b 00 mov (%eax),%eax 1ac: 89 44 24 08 mov %eax,0x8(%esp) 1b0: c7 44 24 04 7c 0b 00 movl $0xb7c,0x4(%esp) 1b7: 00 1b8: c7 04 24 01 00 00 00 movl $0x1,(%esp) 1bf: e8 cc 05 00 00 call 790 <printf> exit(); 1c4: e8 ff 03 00 00 call 5c8 <exit> } grep(pattern, fd); 1c9: 8b 44 24 14 mov 0x14(%esp),%eax 1cd: 89 44 24 04 mov %eax,0x4(%esp) 1d1: 8b 44 24 18 mov 0x18(%esp),%eax 1d5: 89 04 24 mov %eax,(%esp) 1d8: e8 23 fe ff ff call 0 <grep> close(fd); 1dd: 8b 44 24 14 mov 0x14(%esp),%eax 1e1: 89 04 24 mov %eax,(%esp) 1e4: e8 07 04 00 00 call 5f0 <close> if(argc <= 2){ grep(pattern, 0); exit(); } for(i = 2; i < argc; i++){ 1e9: 83 44 24 1c 01 addl $0x1,0x1c(%esp) 1ee: 8b 44 24 1c mov 0x1c(%esp),%eax 1f2: 3b 45 08 cmp 0x8(%ebp),%eax 1f5: 0f 8c 72 ff ff ff jl 16d <main+0x5e> exit(); } grep(pattern, fd); close(fd); } exit(); 1fb: e8 c8 03 00 00 call 5c8 <exit> 00000200 <match>: int matchhere(char*, char*); int matchstar(int, char*, char*); int match(char *re, char *text) { 200: 55 push %ebp 201: 89 e5 mov %esp,%ebp 203: 83 ec 18 sub $0x18,%esp if(re[0] == '^') 206: 8b 45 08 mov 0x8(%ebp),%eax 209: 0f b6 00 movzbl (%eax),%eax 20c: 3c 5e cmp $0x5e,%al 20e: 75 17 jne 227 <match+0x27> return matchhere(re+1, text); 210: 8b 45 08 mov 0x8(%ebp),%eax 213: 8d 50 01 lea 0x1(%eax),%edx 216: 8b 45 0c mov 0xc(%ebp),%eax 219: 89 44 24 04 mov %eax,0x4(%esp) 21d: 89 14 24 mov %edx,(%esp) 220: e8 36 00 00 00 call 25b <matchhere> 225: eb 32 jmp 259 <match+0x59> do{ // must look at empty string if(matchhere(re, text)) 227: 8b 45 0c mov 0xc(%ebp),%eax 22a: 89 44 24 04 mov %eax,0x4(%esp) 22e: 8b 45 08 mov 0x8(%ebp),%eax 231: 89 04 24 mov %eax,(%esp) 234: e8 22 00 00 00 call 25b <matchhere> 239: 85 c0 test %eax,%eax 23b: 74 07 je 244 <match+0x44> return 1; 23d: b8 01 00 00 00 mov $0x1,%eax 242: eb 15 jmp 259 <match+0x59> }while(*text++ != '\0'); 244: 8b 45 0c mov 0xc(%ebp),%eax 247: 8d 50 01 lea 0x1(%eax),%edx 24a: 89 55 0c mov %edx,0xc(%ebp) 24d: 0f b6 00 movzbl (%eax),%eax 250: 84 c0 test %al,%al 252: 75 d3 jne 227 <match+0x27> return 0; 254: b8 00 00 00 00 mov $0x0,%eax } 259: c9 leave 25a: c3 ret 0000025b <matchhere>: // matchhere: search for re at beginning of text int matchhere(char *re, char *text) { 25b: 55 push %ebp 25c: 89 e5 mov %esp,%ebp 25e: 83 ec 18 sub $0x18,%esp if(re[0] == '\0') 261: 8b 45 08 mov 0x8(%ebp),%eax 264: 0f b6 00 movzbl (%eax),%eax 267: 84 c0 test %al,%al 269: 75 0a jne 275 <matchhere+0x1a> return 1; 26b: b8 01 00 00 00 mov $0x1,%eax 270: e9 9b 00 00 00 jmp 310 <matchhere+0xb5> if(re[1] == '*') 275: 8b 45 08 mov 0x8(%ebp),%eax 278: 83 c0 01 add $0x1,%eax 27b: 0f b6 00 movzbl (%eax),%eax 27e: 3c 2a cmp $0x2a,%al 280: 75 24 jne 2a6 <matchhere+0x4b> return matchstar(re[0], re+2, text); 282: 8b 45 08 mov 0x8(%ebp),%eax 285: 8d 48 02 lea 0x2(%eax),%ecx 288: 8b 45 08 mov 0x8(%ebp),%eax 28b: 0f b6 00 movzbl (%eax),%eax 28e: 0f be c0 movsbl %al,%eax 291: 8b 55 0c mov 0xc(%ebp),%edx 294: 89 54 24 08 mov %edx,0x8(%esp) 298: 89 4c 24 04 mov %ecx,0x4(%esp) 29c: 89 04 24 mov %eax,(%esp) 29f: e8 6e 00 00 00 call 312 <matchstar> 2a4: eb 6a jmp 310 <matchhere+0xb5> if(re[0] == '$' && re[1] == '\0') 2a6: 8b 45 08 mov 0x8(%ebp),%eax 2a9: 0f b6 00 movzbl (%eax),%eax 2ac: 3c 24 cmp $0x24,%al 2ae: 75 1d jne 2cd <matchhere+0x72> 2b0: 8b 45 08 mov 0x8(%ebp),%eax 2b3: 83 c0 01 add $0x1,%eax 2b6: 0f b6 00 movzbl (%eax),%eax 2b9: 84 c0 test %al,%al 2bb: 75 10 jne 2cd <matchhere+0x72> return *text == '\0'; 2bd: 8b 45 0c mov 0xc(%ebp),%eax 2c0: 0f b6 00 movzbl (%eax),%eax 2c3: 84 c0 test %al,%al 2c5: 0f 94 c0 sete %al 2c8: 0f b6 c0 movzbl %al,%eax 2cb: eb 43 jmp 310 <matchhere+0xb5> if(*text!='\0' && (re[0]=='.' || re[0]==*text)) 2cd: 8b 45 0c mov 0xc(%ebp),%eax 2d0: 0f b6 00 movzbl (%eax),%eax 2d3: 84 c0 test %al,%al 2d5: 74 34 je 30b <matchhere+0xb0> 2d7: 8b 45 08 mov 0x8(%ebp),%eax 2da: 0f b6 00 movzbl (%eax),%eax 2dd: 3c 2e cmp $0x2e,%al 2df: 74 10 je 2f1 <matchhere+0x96> 2e1: 8b 45 08 mov 0x8(%ebp),%eax 2e4: 0f b6 10 movzbl (%eax),%edx 2e7: 8b 45 0c mov 0xc(%ebp),%eax 2ea: 0f b6 00 movzbl (%eax),%eax 2ed: 38 c2 cmp %al,%dl 2ef: 75 1a jne 30b <matchhere+0xb0> return matchhere(re+1, text+1); 2f1: 8b 45 0c mov 0xc(%ebp),%eax 2f4: 8d 50 01 lea 0x1(%eax),%edx 2f7: 8b 45 08 mov 0x8(%ebp),%eax 2fa: 83 c0 01 add $0x1,%eax 2fd: 89 54 24 04 mov %edx,0x4(%esp) 301: 89 04 24 mov %eax,(%esp) 304: e8 52 ff ff ff call 25b <matchhere> 309: eb 05 jmp 310 <matchhere+0xb5> return 0; 30b: b8 00 00 00 00 mov $0x0,%eax } 310: c9 leave 311: c3 ret 00000312 <matchstar>: // matchstar: search for c*re at beginning of text int matchstar(int c, char *re, char *text) { 312: 55 push %ebp 313: 89 e5 mov %esp,%ebp 315: 83 ec 18 sub $0x18,%esp do{ // a * matches zero or more instances if(matchhere(re, text)) 318: 8b 45 10 mov 0x10(%ebp),%eax 31b: 89 44 24 04 mov %eax,0x4(%esp) 31f: 8b 45 0c mov 0xc(%ebp),%eax 322: 89 04 24 mov %eax,(%esp) 325: e8 31 ff ff ff call 25b <matchhere> 32a: 85 c0 test %eax,%eax 32c: 74 07 je 335 <matchstar+0x23> return 1; 32e: b8 01 00 00 00 mov $0x1,%eax 333: eb 29 jmp 35e <matchstar+0x4c> }while(*text!='\0' && (*text++==c || c=='.')); 335: 8b 45 10 mov 0x10(%ebp),%eax 338: 0f b6 00 movzbl (%eax),%eax 33b: 84 c0 test %al,%al 33d: 74 1a je 359 <matchstar+0x47> 33f: 8b 45 10 mov 0x10(%ebp),%eax 342: 8d 50 01 lea 0x1(%eax),%edx 345: 89 55 10 mov %edx,0x10(%ebp) 348: 0f b6 00 movzbl (%eax),%eax 34b: 0f be c0 movsbl %al,%eax 34e: 3b 45 08 cmp 0x8(%ebp),%eax 351: 74 c5 je 318 <matchstar+0x6> 353: 83 7d 08 2e cmpl $0x2e,0x8(%ebp) 357: 74 bf je 318 <matchstar+0x6> return 0; 359: b8 00 00 00 00 mov $0x0,%eax } 35e: c9 leave 35f: c3 ret 00000360 <stosb>: "cc"); } static inline void stosb(void *addr, int data, int cnt) { 360: 55 push %ebp 361: 89 e5 mov %esp,%ebp 363: 57 push %edi 364: 53 push %ebx asm volatile("cld; rep stosb" : 365: 8b 4d 08 mov 0x8(%ebp),%ecx 368: 8b 55 10 mov 0x10(%ebp),%edx 36b: 8b 45 0c mov 0xc(%ebp),%eax 36e: 89 cb mov %ecx,%ebx 370: 89 df mov %ebx,%edi 372: 89 d1 mov %edx,%ecx 374: fc cld 375: f3 aa rep stos %al,%es:(%edi) 377: 89 ca mov %ecx,%edx 379: 89 fb mov %edi,%ebx 37b: 89 5d 08 mov %ebx,0x8(%ebp) 37e: 89 55 10 mov %edx,0x10(%ebp) "=D" (addr), "=c" (cnt) : "0" (addr), "1" (cnt), "a" (data) : "memory", "cc"); } 381: 5b pop %ebx 382: 5f pop %edi 383: 5d pop %ebp 384: c3 ret 00000385 <strcpy>: #include "user.h" #include "x86.h" char* strcpy(char *s, char *t) { 385: 55 push %ebp 386: 89 e5 mov %esp,%ebp 388: 83 ec 10 sub $0x10,%esp char *os; os = s; 38b: 8b 45 08 mov 0x8(%ebp),%eax 38e: 89 45 fc mov %eax,-0x4(%ebp) while((*s++ = *t++) != 0) 391: 90 nop 392: 8b 45 08 mov 0x8(%ebp),%eax 395: 8d 50 01 lea 0x1(%eax),%edx 398: 89 55 08 mov %edx,0x8(%ebp) 39b: 8b 55 0c mov 0xc(%ebp),%edx 39e: 8d 4a 01 lea 0x1(%edx),%ecx 3a1: 89 4d 0c mov %ecx,0xc(%ebp) 3a4: 0f b6 12 movzbl (%edx),%edx 3a7: 88 10 mov %dl,(%eax) 3a9: 0f b6 00 movzbl (%eax),%eax 3ac: 84 c0 test %al,%al 3ae: 75 e2 jne 392 <strcpy+0xd> ; return os; 3b0: 8b 45 fc mov -0x4(%ebp),%eax } 3b3: c9 leave 3b4: c3 ret 000003b5 <strcmp>: int strcmp(const char *p, const char *q) { 3b5: 55 push %ebp 3b6: 89 e5 mov %esp,%ebp while(*p && *p == *q) 3b8: eb 08 jmp 3c2 <strcmp+0xd> p++, q++; 3ba: 83 45 08 01 addl $0x1,0x8(%ebp) 3be: 83 45 0c 01 addl $0x1,0xc(%ebp) } int strcmp(const char *p, const char *q) { while(*p && *p == *q) 3c2: 8b 45 08 mov 0x8(%ebp),%eax 3c5: 0f b6 00 movzbl (%eax),%eax 3c8: 84 c0 test %al,%al 3ca: 74 10 je 3dc <strcmp+0x27> 3cc: 8b 45 08 mov 0x8(%ebp),%eax 3cf: 0f b6 10 movzbl (%eax),%edx 3d2: 8b 45 0c mov 0xc(%ebp),%eax 3d5: 0f b6 00 movzbl (%eax),%eax 3d8: 38 c2 cmp %al,%dl 3da: 74 de je 3ba <strcmp+0x5> p++, q++; return (uchar)*p - (uchar)*q; 3dc: 8b 45 08 mov 0x8(%ebp),%eax 3df: 0f b6 00 movzbl (%eax),%eax 3e2: 0f b6 d0 movzbl %al,%edx 3e5: 8b 45 0c mov 0xc(%ebp),%eax 3e8: 0f b6 00 movzbl (%eax),%eax 3eb: 0f b6 c0 movzbl %al,%eax 3ee: 29 c2 sub %eax,%edx 3f0: 89 d0 mov %edx,%eax } 3f2: 5d pop %ebp 3f3: c3 ret 000003f4 <strlen>: uint strlen(char *s) { 3f4: 55 push %ebp 3f5: 89 e5 mov %esp,%ebp 3f7: 83 ec 10 sub $0x10,%esp int n; for(n = 0; s[n]; n++) 3fa: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp) 401: eb 04 jmp 407 <strlen+0x13> 403: 83 45 fc 01 addl $0x1,-0x4(%ebp) 407: 8b 55 fc mov -0x4(%ebp),%edx 40a: 8b 45 08 mov 0x8(%ebp),%eax 40d: 01 d0 add %edx,%eax 40f: 0f b6 00 movzbl (%eax),%eax 412: 84 c0 test %al,%al 414: 75 ed jne 403 <strlen+0xf> ; return n; 416: 8b 45 fc mov -0x4(%ebp),%eax } 419: c9 leave 41a: c3 ret 0000041b <memset>: void* memset(void *dst, int c, uint n) { 41b: 55 push %ebp 41c: 89 e5 mov %esp,%ebp 41e: 83 ec 0c sub $0xc,%esp stosb(dst, c, n); 421: 8b 45 10 mov 0x10(%ebp),%eax 424: 89 44 24 08 mov %eax,0x8(%esp) 428: 8b 45 0c mov 0xc(%ebp),%eax 42b: 89 44 24 04 mov %eax,0x4(%esp) 42f: 8b 45 08 mov 0x8(%ebp),%eax 432: 89 04 24 mov %eax,(%esp) 435: e8 26 ff ff ff call 360 <stosb> return dst; 43a: 8b 45 08 mov 0x8(%ebp),%eax } 43d: c9 leave 43e: c3 ret 0000043f <strchr>: char* strchr(const char *s, char c) { 43f: 55 push %ebp 440: 89 e5 mov %esp,%ebp 442: 83 ec 04 sub $0x4,%esp 445: 8b 45 0c mov 0xc(%ebp),%eax 448: 88 45 fc mov %al,-0x4(%ebp) for(; *s; s++) 44b: eb 14 jmp 461 <strchr+0x22> if(*s == c) 44d: 8b 45 08 mov 0x8(%ebp),%eax 450: 0f b6 00 movzbl (%eax),%eax 453: 3a 45 fc cmp -0x4(%ebp),%al 456: 75 05 jne 45d <strchr+0x1e> return (char*)s; 458: 8b 45 08 mov 0x8(%ebp),%eax 45b: eb 13 jmp 470 <strchr+0x31> } char* strchr(const char *s, char c) { for(; *s; s++) 45d: 83 45 08 01 addl $0x1,0x8(%ebp) 461: 8b 45 08 mov 0x8(%ebp),%eax 464: 0f b6 00 movzbl (%eax),%eax 467: 84 c0 test %al,%al 469: 75 e2 jne 44d <strchr+0xe> if(*s == c) return (char*)s; return 0; 46b: b8 00 00 00 00 mov $0x0,%eax } 470: c9 leave 471: c3 ret 00000472 <gets>: char* gets(char *buf, int max) { 472: 55 push %ebp 473: 89 e5 mov %esp,%ebp 475: 83 ec 28 sub $0x28,%esp int i, cc; char c; for(i=0; i+1 < max; ){ 478: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp) 47f: eb 4c jmp 4cd <gets+0x5b> cc = read(0, &c, 1); 481: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp) 488: 00 489: 8d 45 ef lea -0x11(%ebp),%eax 48c: 89 44 24 04 mov %eax,0x4(%esp) 490: c7 04 24 00 00 00 00 movl $0x0,(%esp) 497: e8 44 01 00 00 call 5e0 <read> 49c: 89 45 f0 mov %eax,-0x10(%ebp) if(cc < 1) 49f: 83 7d f0 00 cmpl $0x0,-0x10(%ebp) 4a3: 7f 02 jg 4a7 <gets+0x35> break; 4a5: eb 31 jmp 4d8 <gets+0x66> buf[i++] = c; 4a7: 8b 45 f4 mov -0xc(%ebp),%eax 4aa: 8d 50 01 lea 0x1(%eax),%edx 4ad: 89 55 f4 mov %edx,-0xc(%ebp) 4b0: 89 c2 mov %eax,%edx 4b2: 8b 45 08 mov 0x8(%ebp),%eax 4b5: 01 c2 add %eax,%edx 4b7: 0f b6 45 ef movzbl -0x11(%ebp),%eax 4bb: 88 02 mov %al,(%edx) if(c == '\n' || c == '\r') 4bd: 0f b6 45 ef movzbl -0x11(%ebp),%eax 4c1: 3c 0a cmp $0xa,%al 4c3: 74 13 je 4d8 <gets+0x66> 4c5: 0f b6 45 ef movzbl -0x11(%ebp),%eax 4c9: 3c 0d cmp $0xd,%al 4cb: 74 0b je 4d8 <gets+0x66> gets(char *buf, int max) { int i, cc; char c; for(i=0; i+1 < max; ){ 4cd: 8b 45 f4 mov -0xc(%ebp),%eax 4d0: 83 c0 01 add $0x1,%eax 4d3: 3b 45 0c cmp 0xc(%ebp),%eax 4d6: 7c a9 jl 481 <gets+0xf> break; buf[i++] = c; if(c == '\n' || c == '\r') break; } buf[i] = '\0'; 4d8: 8b 55 f4 mov -0xc(%ebp),%edx 4db: 8b 45 08 mov 0x8(%ebp),%eax 4de: 01 d0 add %edx,%eax 4e0: c6 00 00 movb $0x0,(%eax) return buf; 4e3: 8b 45 08 mov 0x8(%ebp),%eax } 4e6: c9 leave 4e7: c3 ret 000004e8 <stat>: int stat(char *n, struct stat *st) { 4e8: 55 push %ebp 4e9: 89 e5 mov %esp,%ebp 4eb: 83 ec 28 sub $0x28,%esp int fd; int r; fd = open(n, O_RDONLY); 4ee: c7 44 24 04 00 00 00 movl $0x0,0x4(%esp) 4f5: 00 4f6: 8b 45 08 mov 0x8(%ebp),%eax 4f9: 89 04 24 mov %eax,(%esp) 4fc: e8 07 01 00 00 call 608 <open> 501: 89 45 f4 mov %eax,-0xc(%ebp) if(fd < 0) 504: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) 508: 79 07 jns 511 <stat+0x29> return -1; 50a: b8 ff ff ff ff mov $0xffffffff,%eax 50f: eb 23 jmp 534 <stat+0x4c> r = fstat(fd, st); 511: 8b 45 0c mov 0xc(%ebp),%eax 514: 89 44 24 04 mov %eax,0x4(%esp) 518: 8b 45 f4 mov -0xc(%ebp),%eax 51b: 89 04 24 mov %eax,(%esp) 51e: e8 fd 00 00 00 call 620 <fstat> 523: 89 45 f0 mov %eax,-0x10(%ebp) close(fd); 526: 8b 45 f4 mov -0xc(%ebp),%eax 529: 89 04 24 mov %eax,(%esp) 52c: e8 bf 00 00 00 call 5f0 <close> return r; 531: 8b 45 f0 mov -0x10(%ebp),%eax } 534: c9 leave 535: c3 ret 00000536 <atoi>: int atoi(const char *s) { 536: 55 push %ebp 537: 89 e5 mov %esp,%ebp 539: 83 ec 10 sub $0x10,%esp int n; n = 0; 53c: c7 45 fc 00 00 00 00 movl $0x0,-0x4(%ebp) while('0' <= *s && *s <= '9') 543: eb 25 jmp 56a <atoi+0x34> n = n*10 + *s++ - '0'; 545: 8b 55 fc mov -0x4(%ebp),%edx 548: 89 d0 mov %edx,%eax 54a: c1 e0 02 shl $0x2,%eax 54d: 01 d0 add %edx,%eax 54f: 01 c0 add %eax,%eax 551: 89 c1 mov %eax,%ecx 553: 8b 45 08 mov 0x8(%ebp),%eax 556: 8d 50 01 lea 0x1(%eax),%edx 559: 89 55 08 mov %edx,0x8(%ebp) 55c: 0f b6 00 movzbl (%eax),%eax 55f: 0f be c0 movsbl %al,%eax 562: 01 c8 add %ecx,%eax 564: 83 e8 30 sub $0x30,%eax 567: 89 45 fc mov %eax,-0x4(%ebp) atoi(const char *s) { int n; n = 0; while('0' <= *s && *s <= '9') 56a: 8b 45 08 mov 0x8(%ebp),%eax 56d: 0f b6 00 movzbl (%eax),%eax 570: 3c 2f cmp $0x2f,%al 572: 7e 0a jle 57e <atoi+0x48> 574: 8b 45 08 mov 0x8(%ebp),%eax 577: 0f b6 00 movzbl (%eax),%eax 57a: 3c 39 cmp $0x39,%al 57c: 7e c7 jle 545 <atoi+0xf> n = n*10 + *s++ - '0'; return n; 57e: 8b 45 fc mov -0x4(%ebp),%eax } 581: c9 leave 582: c3 ret 00000583 <memmove>: void* memmove(void *vdst, void *vsrc, int n) { 583: 55 push %ebp 584: 89 e5 mov %esp,%ebp 586: 83 ec 10 sub $0x10,%esp char *dst, *src; dst = vdst; 589: 8b 45 08 mov 0x8(%ebp),%eax 58c: 89 45 fc mov %eax,-0x4(%ebp) src = vsrc; 58f: 8b 45 0c mov 0xc(%ebp),%eax 592: 89 45 f8 mov %eax,-0x8(%ebp) while(n-- > 0) 595: eb 17 jmp 5ae <memmove+0x2b> *dst++ = *src++; 597: 8b 45 fc mov -0x4(%ebp),%eax 59a: 8d 50 01 lea 0x1(%eax),%edx 59d: 89 55 fc mov %edx,-0x4(%ebp) 5a0: 8b 55 f8 mov -0x8(%ebp),%edx 5a3: 8d 4a 01 lea 0x1(%edx),%ecx 5a6: 89 4d f8 mov %ecx,-0x8(%ebp) 5a9: 0f b6 12 movzbl (%edx),%edx 5ac: 88 10 mov %dl,(%eax) { char *dst, *src; dst = vdst; src = vsrc; while(n-- > 0) 5ae: 8b 45 10 mov 0x10(%ebp),%eax 5b1: 8d 50 ff lea -0x1(%eax),%edx 5b4: 89 55 10 mov %edx,0x10(%ebp) 5b7: 85 c0 test %eax,%eax 5b9: 7f dc jg 597 <memmove+0x14> *dst++ = *src++; return vdst; 5bb: 8b 45 08 mov 0x8(%ebp),%eax } 5be: c9 leave 5bf: c3 ret 000005c0 <fork>: name: \ movl $SYS_ ## name, %eax; \ int $T_SYSCALL; \ ret SYSCALL(fork) 5c0: b8 01 00 00 00 mov $0x1,%eax 5c5: cd 40 int $0x40 5c7: c3 ret 000005c8 <exit>: SYSCALL(exit) 5c8: b8 02 00 00 00 mov $0x2,%eax 5cd: cd 40 int $0x40 5cf: c3 ret 000005d0 <wait>: SYSCALL(wait) 5d0: b8 03 00 00 00 mov $0x3,%eax 5d5: cd 40 int $0x40 5d7: c3 ret 000005d8 <pipe>: SYSCALL(pipe) 5d8: b8 04 00 00 00 mov $0x4,%eax 5dd: cd 40 int $0x40 5df: c3 ret 000005e0 <read>: SYSCALL(read) 5e0: b8 05 00 00 00 mov $0x5,%eax 5e5: cd 40 int $0x40 5e7: c3 ret 000005e8 <write>: SYSCALL(write) 5e8: b8 10 00 00 00 mov $0x10,%eax 5ed: cd 40 int $0x40 5ef: c3 ret 000005f0 <close>: SYSCALL(close) 5f0: b8 15 00 00 00 mov $0x15,%eax 5f5: cd 40 int $0x40 5f7: c3 ret 000005f8 <kill>: SYSCALL(kill) 5f8: b8 06 00 00 00 mov $0x6,%eax 5fd: cd 40 int $0x40 5ff: c3 ret 00000600 <exec>: SYSCALL(exec) 600: b8 07 00 00 00 mov $0x7,%eax 605: cd 40 int $0x40 607: c3 ret 00000608 <open>: SYSCALL(open) 608: b8 0f 00 00 00 mov $0xf,%eax 60d: cd 40 int $0x40 60f: c3 ret 00000610 <mknod>: SYSCALL(mknod) 610: b8 11 00 00 00 mov $0x11,%eax 615: cd 40 int $0x40 617: c3 ret 00000618 <unlink>: SYSCALL(unlink) 618: b8 12 00 00 00 mov $0x12,%eax 61d: cd 40 int $0x40 61f: c3 ret 00000620 <fstat>: SYSCALL(fstat) 620: b8 08 00 00 00 mov $0x8,%eax 625: cd 40 int $0x40 627: c3 ret 00000628 <link>: SYSCALL(link) 628: b8 13 00 00 00 mov $0x13,%eax 62d: cd 40 int $0x40 62f: c3 ret 00000630 <mkdir>: SYSCALL(mkdir) 630: b8 14 00 00 00 mov $0x14,%eax 635: cd 40 int $0x40 637: c3 ret 00000638 <chdir>: SYSCALL(chdir) 638: b8 09 00 00 00 mov $0x9,%eax 63d: cd 40 int $0x40 63f: c3 ret 00000640 <dup>: SYSCALL(dup) 640: b8 0a 00 00 00 mov $0xa,%eax 645: cd 40 int $0x40 647: c3 ret 00000648 <getpid>: SYSCALL(getpid) 648: b8 0b 00 00 00 mov $0xb,%eax 64d: cd 40 int $0x40 64f: c3 ret 00000650 <sbrk>: SYSCALL(sbrk) 650: b8 0c 00 00 00 mov $0xc,%eax 655: cd 40 int $0x40 657: c3 ret 00000658 <sleep>: SYSCALL(sleep) 658: b8 0d 00 00 00 mov $0xd,%eax 65d: cd 40 int $0x40 65f: c3 ret 00000660 <uptime>: SYSCALL(uptime) 660: b8 0e 00 00 00 mov $0xe,%eax 665: cd 40 int $0x40 667: c3 ret 00000668 <date>: SYSCALL(date) 668: b8 16 00 00 00 mov $0x16,%eax 66d: cd 40 int $0x40 66f: c3 ret 00000670 <timem>: SYSCALL(timem) 670: b8 17 00 00 00 mov $0x17,%eax 675: cd 40 int $0x40 677: c3 ret 00000678 <getuid>: SYSCALL(getuid) 678: b8 18 00 00 00 mov $0x18,%eax 67d: cd 40 int $0x40 67f: c3 ret 00000680 <getgid>: SYSCALL(getgid) 680: b8 19 00 00 00 mov $0x19,%eax 685: cd 40 int $0x40 687: c3 ret 00000688 <getppid>: SYSCALL(getppid) 688: b8 1a 00 00 00 mov $0x1a,%eax 68d: cd 40 int $0x40 68f: c3 ret 00000690 <setuid>: SYSCALL(setuid) 690: b8 1b 00 00 00 mov $0x1b,%eax 695: cd 40 int $0x40 697: c3 ret 00000698 <setgid>: SYSCALL(setgid) 698: b8 1c 00 00 00 mov $0x1c,%eax 69d: cd 40 int $0x40 69f: c3 ret 000006a0 <getprocs>: SYSCALL(getprocs) 6a0: b8 1d 00 00 00 mov $0x1d,%eax 6a5: cd 40 int $0x40 6a7: c3 ret 000006a8 <setpriority>: SYSCALL(setpriority) 6a8: b8 1e 00 00 00 mov $0x1e,%eax 6ad: cd 40 int $0x40 6af: c3 ret 000006b0 <putc>: #include "stat.h" #include "user.h" static void putc(int fd, char c) { 6b0: 55 push %ebp 6b1: 89 e5 mov %esp,%ebp 6b3: 83 ec 18 sub $0x18,%esp 6b6: 8b 45 0c mov 0xc(%ebp),%eax 6b9: 88 45 f4 mov %al,-0xc(%ebp) write(fd, &c, 1); 6bc: c7 44 24 08 01 00 00 movl $0x1,0x8(%esp) 6c3: 00 6c4: 8d 45 f4 lea -0xc(%ebp),%eax 6c7: 89 44 24 04 mov %eax,0x4(%esp) 6cb: 8b 45 08 mov 0x8(%ebp),%eax 6ce: 89 04 24 mov %eax,(%esp) 6d1: e8 12 ff ff ff call 5e8 <write> } 6d6: c9 leave 6d7: c3 ret 000006d8 <printint>: static void printint(int fd, int xx, int base, int sgn) { 6d8: 55 push %ebp 6d9: 89 e5 mov %esp,%ebp 6db: 56 push %esi 6dc: 53 push %ebx 6dd: 83 ec 30 sub $0x30,%esp static char digits[] = "0123456789ABCDEF"; char buf[16]; int i, neg; uint x; neg = 0; 6e0: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp) if(sgn && xx < 0){ 6e7: 83 7d 14 00 cmpl $0x0,0x14(%ebp) 6eb: 74 17 je 704 <printint+0x2c> 6ed: 83 7d 0c 00 cmpl $0x0,0xc(%ebp) 6f1: 79 11 jns 704 <printint+0x2c> neg = 1; 6f3: c7 45 f0 01 00 00 00 movl $0x1,-0x10(%ebp) x = -xx; 6fa: 8b 45 0c mov 0xc(%ebp),%eax 6fd: f7 d8 neg %eax 6ff: 89 45 ec mov %eax,-0x14(%ebp) 702: eb 06 jmp 70a <printint+0x32> } else { x = xx; 704: 8b 45 0c mov 0xc(%ebp),%eax 707: 89 45 ec mov %eax,-0x14(%ebp) } i = 0; 70a: c7 45 f4 00 00 00 00 movl $0x0,-0xc(%ebp) do{ buf[i++] = digits[x % base]; 711: 8b 4d f4 mov -0xc(%ebp),%ecx 714: 8d 41 01 lea 0x1(%ecx),%eax 717: 89 45 f4 mov %eax,-0xc(%ebp) 71a: 8b 5d 10 mov 0x10(%ebp),%ebx 71d: 8b 45 ec mov -0x14(%ebp),%eax 720: ba 00 00 00 00 mov $0x0,%edx 725: f7 f3 div %ebx 727: 89 d0 mov %edx,%eax 729: 0f b6 80 60 0e 00 00 movzbl 0xe60(%eax),%eax 730: 88 44 0d dc mov %al,-0x24(%ebp,%ecx,1) }while((x /= base) != 0); 734: 8b 75 10 mov 0x10(%ebp),%esi 737: 8b 45 ec mov -0x14(%ebp),%eax 73a: ba 00 00 00 00 mov $0x0,%edx 73f: f7 f6 div %esi 741: 89 45 ec mov %eax,-0x14(%ebp) 744: 83 7d ec 00 cmpl $0x0,-0x14(%ebp) 748: 75 c7 jne 711 <printint+0x39> if(neg) 74a: 83 7d f0 00 cmpl $0x0,-0x10(%ebp) 74e: 74 10 je 760 <printint+0x88> buf[i++] = '-'; 750: 8b 45 f4 mov -0xc(%ebp),%eax 753: 8d 50 01 lea 0x1(%eax),%edx 756: 89 55 f4 mov %edx,-0xc(%ebp) 759: c6 44 05 dc 2d movb $0x2d,-0x24(%ebp,%eax,1) while(--i >= 0) 75e: eb 1f jmp 77f <printint+0xa7> 760: eb 1d jmp 77f <printint+0xa7> putc(fd, buf[i]); 762: 8d 55 dc lea -0x24(%ebp),%edx 765: 8b 45 f4 mov -0xc(%ebp),%eax 768: 01 d0 add %edx,%eax 76a: 0f b6 00 movzbl (%eax),%eax 76d: 0f be c0 movsbl %al,%eax 770: 89 44 24 04 mov %eax,0x4(%esp) 774: 8b 45 08 mov 0x8(%ebp),%eax 777: 89 04 24 mov %eax,(%esp) 77a: e8 31 ff ff ff call 6b0 <putc> buf[i++] = digits[x % base]; }while((x /= base) != 0); if(neg) buf[i++] = '-'; while(--i >= 0) 77f: 83 6d f4 01 subl $0x1,-0xc(%ebp) 783: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) 787: 79 d9 jns 762 <printint+0x8a> putc(fd, buf[i]); } 789: 83 c4 30 add $0x30,%esp 78c: 5b pop %ebx 78d: 5e pop %esi 78e: 5d pop %ebp 78f: c3 ret 00000790 <printf>: // Print to the given fd. Only understands %d, %x, %p, %s. void printf(int fd, char *fmt, ...) { 790: 55 push %ebp 791: 89 e5 mov %esp,%ebp 793: 83 ec 38 sub $0x38,%esp char *s; int c, i, state; uint *ap; state = 0; 796: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp) ap = (uint*)(void*)&fmt + 1; 79d: 8d 45 0c lea 0xc(%ebp),%eax 7a0: 83 c0 04 add $0x4,%eax 7a3: 89 45 e8 mov %eax,-0x18(%ebp) for(i = 0; fmt[i]; i++){ 7a6: c7 45 f0 00 00 00 00 movl $0x0,-0x10(%ebp) 7ad: e9 7c 01 00 00 jmp 92e <printf+0x19e> c = fmt[i] & 0xff; 7b2: 8b 55 0c mov 0xc(%ebp),%edx 7b5: 8b 45 f0 mov -0x10(%ebp),%eax 7b8: 01 d0 add %edx,%eax 7ba: 0f b6 00 movzbl (%eax),%eax 7bd: 0f be c0 movsbl %al,%eax 7c0: 25 ff 00 00 00 and $0xff,%eax 7c5: 89 45 e4 mov %eax,-0x1c(%ebp) if(state == 0){ 7c8: 83 7d ec 00 cmpl $0x0,-0x14(%ebp) 7cc: 75 2c jne 7fa <printf+0x6a> if(c == '%'){ 7ce: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp) 7d2: 75 0c jne 7e0 <printf+0x50> state = '%'; 7d4: c7 45 ec 25 00 00 00 movl $0x25,-0x14(%ebp) 7db: e9 4a 01 00 00 jmp 92a <printf+0x19a> } else { putc(fd, c); 7e0: 8b 45 e4 mov -0x1c(%ebp),%eax 7e3: 0f be c0 movsbl %al,%eax 7e6: 89 44 24 04 mov %eax,0x4(%esp) 7ea: 8b 45 08 mov 0x8(%ebp),%eax 7ed: 89 04 24 mov %eax,(%esp) 7f0: e8 bb fe ff ff call 6b0 <putc> 7f5: e9 30 01 00 00 jmp 92a <printf+0x19a> } } else if(state == '%'){ 7fa: 83 7d ec 25 cmpl $0x25,-0x14(%ebp) 7fe: 0f 85 26 01 00 00 jne 92a <printf+0x19a> if(c == 'd'){ 804: 83 7d e4 64 cmpl $0x64,-0x1c(%ebp) 808: 75 2d jne 837 <printf+0xa7> printint(fd, *ap, 10, 1); 80a: 8b 45 e8 mov -0x18(%ebp),%eax 80d: 8b 00 mov (%eax),%eax 80f: c7 44 24 0c 01 00 00 movl $0x1,0xc(%esp) 816: 00 817: c7 44 24 08 0a 00 00 movl $0xa,0x8(%esp) 81e: 00 81f: 89 44 24 04 mov %eax,0x4(%esp) 823: 8b 45 08 mov 0x8(%ebp),%eax 826: 89 04 24 mov %eax,(%esp) 829: e8 aa fe ff ff call 6d8 <printint> ap++; 82e: 83 45 e8 04 addl $0x4,-0x18(%ebp) 832: e9 ec 00 00 00 jmp 923 <printf+0x193> } else if(c == 'x' || c == 'p'){ 837: 83 7d e4 78 cmpl $0x78,-0x1c(%ebp) 83b: 74 06 je 843 <printf+0xb3> 83d: 83 7d e4 70 cmpl $0x70,-0x1c(%ebp) 841: 75 2d jne 870 <printf+0xe0> printint(fd, *ap, 16, 0); 843: 8b 45 e8 mov -0x18(%ebp),%eax 846: 8b 00 mov (%eax),%eax 848: c7 44 24 0c 00 00 00 movl $0x0,0xc(%esp) 84f: 00 850: c7 44 24 08 10 00 00 movl $0x10,0x8(%esp) 857: 00 858: 89 44 24 04 mov %eax,0x4(%esp) 85c: 8b 45 08 mov 0x8(%ebp),%eax 85f: 89 04 24 mov %eax,(%esp) 862: e8 71 fe ff ff call 6d8 <printint> ap++; 867: 83 45 e8 04 addl $0x4,-0x18(%ebp) 86b: e9 b3 00 00 00 jmp 923 <printf+0x193> } else if(c == 's'){ 870: 83 7d e4 73 cmpl $0x73,-0x1c(%ebp) 874: 75 45 jne 8bb <printf+0x12b> s = (char*)*ap; 876: 8b 45 e8 mov -0x18(%ebp),%eax 879: 8b 00 mov (%eax),%eax 87b: 89 45 f4 mov %eax,-0xc(%ebp) ap++; 87e: 83 45 e8 04 addl $0x4,-0x18(%ebp) if(s == 0) 882: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) 886: 75 09 jne 891 <printf+0x101> s = "(null)"; 888: c7 45 f4 92 0b 00 00 movl $0xb92,-0xc(%ebp) while(*s != 0){ 88f: eb 1e jmp 8af <printf+0x11f> 891: eb 1c jmp 8af <printf+0x11f> putc(fd, *s); 893: 8b 45 f4 mov -0xc(%ebp),%eax 896: 0f b6 00 movzbl (%eax),%eax 899: 0f be c0 movsbl %al,%eax 89c: 89 44 24 04 mov %eax,0x4(%esp) 8a0: 8b 45 08 mov 0x8(%ebp),%eax 8a3: 89 04 24 mov %eax,(%esp) 8a6: e8 05 fe ff ff call 6b0 <putc> s++; 8ab: 83 45 f4 01 addl $0x1,-0xc(%ebp) } else if(c == 's'){ s = (char*)*ap; ap++; if(s == 0) s = "(null)"; while(*s != 0){ 8af: 8b 45 f4 mov -0xc(%ebp),%eax 8b2: 0f b6 00 movzbl (%eax),%eax 8b5: 84 c0 test %al,%al 8b7: 75 da jne 893 <printf+0x103> 8b9: eb 68 jmp 923 <printf+0x193> putc(fd, *s); s++; } } else if(c == 'c'){ 8bb: 83 7d e4 63 cmpl $0x63,-0x1c(%ebp) 8bf: 75 1d jne 8de <printf+0x14e> putc(fd, *ap); 8c1: 8b 45 e8 mov -0x18(%ebp),%eax 8c4: 8b 00 mov (%eax),%eax 8c6: 0f be c0 movsbl %al,%eax 8c9: 89 44 24 04 mov %eax,0x4(%esp) 8cd: 8b 45 08 mov 0x8(%ebp),%eax 8d0: 89 04 24 mov %eax,(%esp) 8d3: e8 d8 fd ff ff call 6b0 <putc> ap++; 8d8: 83 45 e8 04 addl $0x4,-0x18(%ebp) 8dc: eb 45 jmp 923 <printf+0x193> } else if(c == '%'){ 8de: 83 7d e4 25 cmpl $0x25,-0x1c(%ebp) 8e2: 75 17 jne 8fb <printf+0x16b> putc(fd, c); 8e4: 8b 45 e4 mov -0x1c(%ebp),%eax 8e7: 0f be c0 movsbl %al,%eax 8ea: 89 44 24 04 mov %eax,0x4(%esp) 8ee: 8b 45 08 mov 0x8(%ebp),%eax 8f1: 89 04 24 mov %eax,(%esp) 8f4: e8 b7 fd ff ff call 6b0 <putc> 8f9: eb 28 jmp 923 <printf+0x193> } else { // Unknown % sequence. Print it to draw attention. putc(fd, '%'); 8fb: c7 44 24 04 25 00 00 movl $0x25,0x4(%esp) 902: 00 903: 8b 45 08 mov 0x8(%ebp),%eax 906: 89 04 24 mov %eax,(%esp) 909: e8 a2 fd ff ff call 6b0 <putc> putc(fd, c); 90e: 8b 45 e4 mov -0x1c(%ebp),%eax 911: 0f be c0 movsbl %al,%eax 914: 89 44 24 04 mov %eax,0x4(%esp) 918: 8b 45 08 mov 0x8(%ebp),%eax 91b: 89 04 24 mov %eax,(%esp) 91e: e8 8d fd ff ff call 6b0 <putc> } state = 0; 923: c7 45 ec 00 00 00 00 movl $0x0,-0x14(%ebp) int c, i, state; uint *ap; state = 0; ap = (uint*)(void*)&fmt + 1; for(i = 0; fmt[i]; i++){ 92a: 83 45 f0 01 addl $0x1,-0x10(%ebp) 92e: 8b 55 0c mov 0xc(%ebp),%edx 931: 8b 45 f0 mov -0x10(%ebp),%eax 934: 01 d0 add %edx,%eax 936: 0f b6 00 movzbl (%eax),%eax 939: 84 c0 test %al,%al 93b: 0f 85 71 fe ff ff jne 7b2 <printf+0x22> putc(fd, c); } state = 0; } } } 941: c9 leave 942: c3 ret 00000943 <free>: static Header base; static Header *freep; void free(void *ap) { 943: 55 push %ebp 944: 89 e5 mov %esp,%ebp 946: 83 ec 10 sub $0x10,%esp Header *bp, *p; bp = (Header*)ap - 1; 949: 8b 45 08 mov 0x8(%ebp),%eax 94c: 83 e8 08 sub $0x8,%eax 94f: 89 45 f8 mov %eax,-0x8(%ebp) for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr) 952: a1 88 0e 00 00 mov 0xe88,%eax 957: 89 45 fc mov %eax,-0x4(%ebp) 95a: eb 24 jmp 980 <free+0x3d> if(p >= p->s.ptr && (bp > p || bp < p->s.ptr)) 95c: 8b 45 fc mov -0x4(%ebp),%eax 95f: 8b 00 mov (%eax),%eax 961: 3b 45 fc cmp -0x4(%ebp),%eax 964: 77 12 ja 978 <free+0x35> 966: 8b 45 f8 mov -0x8(%ebp),%eax 969: 3b 45 fc cmp -0x4(%ebp),%eax 96c: 77 24 ja 992 <free+0x4f> 96e: 8b 45 fc mov -0x4(%ebp),%eax 971: 8b 00 mov (%eax),%eax 973: 3b 45 f8 cmp -0x8(%ebp),%eax 976: 77 1a ja 992 <free+0x4f> free(void *ap) { Header *bp, *p; bp = (Header*)ap - 1; for(p = freep; !(bp > p && bp < p->s.ptr); p = p->s.ptr) 978: 8b 45 fc mov -0x4(%ebp),%eax 97b: 8b 00 mov (%eax),%eax 97d: 89 45 fc mov %eax,-0x4(%ebp) 980: 8b 45 f8 mov -0x8(%ebp),%eax 983: 3b 45 fc cmp -0x4(%ebp),%eax 986: 76 d4 jbe 95c <free+0x19> 988: 8b 45 fc mov -0x4(%ebp),%eax 98b: 8b 00 mov (%eax),%eax 98d: 3b 45 f8 cmp -0x8(%ebp),%eax 990: 76 ca jbe 95c <free+0x19> if(p >= p->s.ptr && (bp > p || bp < p->s.ptr)) break; if(bp + bp->s.size == p->s.ptr){ 992: 8b 45 f8 mov -0x8(%ebp),%eax 995: 8b 40 04 mov 0x4(%eax),%eax 998: 8d 14 c5 00 00 00 00 lea 0x0(,%eax,8),%edx 99f: 8b 45 f8 mov -0x8(%ebp),%eax 9a2: 01 c2 add %eax,%edx 9a4: 8b 45 fc mov -0x4(%ebp),%eax 9a7: 8b 00 mov (%eax),%eax 9a9: 39 c2 cmp %eax,%edx 9ab: 75 24 jne 9d1 <free+0x8e> bp->s.size += p->s.ptr->s.size; 9ad: 8b 45 f8 mov -0x8(%ebp),%eax 9b0: 8b 50 04 mov 0x4(%eax),%edx 9b3: 8b 45 fc mov -0x4(%ebp),%eax 9b6: 8b 00 mov (%eax),%eax 9b8: 8b 40 04 mov 0x4(%eax),%eax 9bb: 01 c2 add %eax,%edx 9bd: 8b 45 f8 mov -0x8(%ebp),%eax 9c0: 89 50 04 mov %edx,0x4(%eax) bp->s.ptr = p->s.ptr->s.ptr; 9c3: 8b 45 fc mov -0x4(%ebp),%eax 9c6: 8b 00 mov (%eax),%eax 9c8: 8b 10 mov (%eax),%edx 9ca: 8b 45 f8 mov -0x8(%ebp),%eax 9cd: 89 10 mov %edx,(%eax) 9cf: eb 0a jmp 9db <free+0x98> } else bp->s.ptr = p->s.ptr; 9d1: 8b 45 fc mov -0x4(%ebp),%eax 9d4: 8b 10 mov (%eax),%edx 9d6: 8b 45 f8 mov -0x8(%ebp),%eax 9d9: 89 10 mov %edx,(%eax) if(p + p->s.size == bp){ 9db: 8b 45 fc mov -0x4(%ebp),%eax 9de: 8b 40 04 mov 0x4(%eax),%eax 9e1: 8d 14 c5 00 00 00 00 lea 0x0(,%eax,8),%edx 9e8: 8b 45 fc mov -0x4(%ebp),%eax 9eb: 01 d0 add %edx,%eax 9ed: 3b 45 f8 cmp -0x8(%ebp),%eax 9f0: 75 20 jne a12 <free+0xcf> p->s.size += bp->s.size; 9f2: 8b 45 fc mov -0x4(%ebp),%eax 9f5: 8b 50 04 mov 0x4(%eax),%edx 9f8: 8b 45 f8 mov -0x8(%ebp),%eax 9fb: 8b 40 04 mov 0x4(%eax),%eax 9fe: 01 c2 add %eax,%edx a00: 8b 45 fc mov -0x4(%ebp),%eax a03: 89 50 04 mov %edx,0x4(%eax) p->s.ptr = bp->s.ptr; a06: 8b 45 f8 mov -0x8(%ebp),%eax a09: 8b 10 mov (%eax),%edx a0b: 8b 45 fc mov -0x4(%ebp),%eax a0e: 89 10 mov %edx,(%eax) a10: eb 08 jmp a1a <free+0xd7> } else p->s.ptr = bp; a12: 8b 45 fc mov -0x4(%ebp),%eax a15: 8b 55 f8 mov -0x8(%ebp),%edx a18: 89 10 mov %edx,(%eax) freep = p; a1a: 8b 45 fc mov -0x4(%ebp),%eax a1d: a3 88 0e 00 00 mov %eax,0xe88 } a22: c9 leave a23: c3 ret 00000a24 <morecore>: static Header* morecore(uint nu) { a24: 55 push %ebp a25: 89 e5 mov %esp,%ebp a27: 83 ec 28 sub $0x28,%esp char *p; Header *hp; if(nu < 4096) a2a: 81 7d 08 ff 0f 00 00 cmpl $0xfff,0x8(%ebp) a31: 77 07 ja a3a <morecore+0x16> nu = 4096; a33: c7 45 08 00 10 00 00 movl $0x1000,0x8(%ebp) p = sbrk(nu * sizeof(Header)); a3a: 8b 45 08 mov 0x8(%ebp),%eax a3d: c1 e0 03 shl $0x3,%eax a40: 89 04 24 mov %eax,(%esp) a43: e8 08 fc ff ff call 650 <sbrk> a48: 89 45 f4 mov %eax,-0xc(%ebp) if(p == (char*)-1) a4b: 83 7d f4 ff cmpl $0xffffffff,-0xc(%ebp) a4f: 75 07 jne a58 <morecore+0x34> return 0; a51: b8 00 00 00 00 mov $0x0,%eax a56: eb 22 jmp a7a <morecore+0x56> hp = (Header*)p; a58: 8b 45 f4 mov -0xc(%ebp),%eax a5b: 89 45 f0 mov %eax,-0x10(%ebp) hp->s.size = nu; a5e: 8b 45 f0 mov -0x10(%ebp),%eax a61: 8b 55 08 mov 0x8(%ebp),%edx a64: 89 50 04 mov %edx,0x4(%eax) free((void*)(hp + 1)); a67: 8b 45 f0 mov -0x10(%ebp),%eax a6a: 83 c0 08 add $0x8,%eax a6d: 89 04 24 mov %eax,(%esp) a70: e8 ce fe ff ff call 943 <free> return freep; a75: a1 88 0e 00 00 mov 0xe88,%eax } a7a: c9 leave a7b: c3 ret 00000a7c <malloc>: void* malloc(uint nbytes) { a7c: 55 push %ebp a7d: 89 e5 mov %esp,%ebp a7f: 83 ec 28 sub $0x28,%esp Header *p, *prevp; uint nunits; nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1; a82: 8b 45 08 mov 0x8(%ebp),%eax a85: 83 c0 07 add $0x7,%eax a88: c1 e8 03 shr $0x3,%eax a8b: 83 c0 01 add $0x1,%eax a8e: 89 45 ec mov %eax,-0x14(%ebp) if((prevp = freep) == 0){ a91: a1 88 0e 00 00 mov 0xe88,%eax a96: 89 45 f0 mov %eax,-0x10(%ebp) a99: 83 7d f0 00 cmpl $0x0,-0x10(%ebp) a9d: 75 23 jne ac2 <malloc+0x46> base.s.ptr = freep = prevp = &base; a9f: c7 45 f0 80 0e 00 00 movl $0xe80,-0x10(%ebp) aa6: 8b 45 f0 mov -0x10(%ebp),%eax aa9: a3 88 0e 00 00 mov %eax,0xe88 aae: a1 88 0e 00 00 mov 0xe88,%eax ab3: a3 80 0e 00 00 mov %eax,0xe80 base.s.size = 0; ab8: c7 05 84 0e 00 00 00 movl $0x0,0xe84 abf: 00 00 00 } for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){ ac2: 8b 45 f0 mov -0x10(%ebp),%eax ac5: 8b 00 mov (%eax),%eax ac7: 89 45 f4 mov %eax,-0xc(%ebp) if(p->s.size >= nunits){ aca: 8b 45 f4 mov -0xc(%ebp),%eax acd: 8b 40 04 mov 0x4(%eax),%eax ad0: 3b 45 ec cmp -0x14(%ebp),%eax ad3: 72 4d jb b22 <malloc+0xa6> if(p->s.size == nunits) ad5: 8b 45 f4 mov -0xc(%ebp),%eax ad8: 8b 40 04 mov 0x4(%eax),%eax adb: 3b 45 ec cmp -0x14(%ebp),%eax ade: 75 0c jne aec <malloc+0x70> prevp->s.ptr = p->s.ptr; ae0: 8b 45 f4 mov -0xc(%ebp),%eax ae3: 8b 10 mov (%eax),%edx ae5: 8b 45 f0 mov -0x10(%ebp),%eax ae8: 89 10 mov %edx,(%eax) aea: eb 26 jmp b12 <malloc+0x96> else { p->s.size -= nunits; aec: 8b 45 f4 mov -0xc(%ebp),%eax aef: 8b 40 04 mov 0x4(%eax),%eax af2: 2b 45 ec sub -0x14(%ebp),%eax af5: 89 c2 mov %eax,%edx af7: 8b 45 f4 mov -0xc(%ebp),%eax afa: 89 50 04 mov %edx,0x4(%eax) p += p->s.size; afd: 8b 45 f4 mov -0xc(%ebp),%eax b00: 8b 40 04 mov 0x4(%eax),%eax b03: c1 e0 03 shl $0x3,%eax b06: 01 45 f4 add %eax,-0xc(%ebp) p->s.size = nunits; b09: 8b 45 f4 mov -0xc(%ebp),%eax b0c: 8b 55 ec mov -0x14(%ebp),%edx b0f: 89 50 04 mov %edx,0x4(%eax) } freep = prevp; b12: 8b 45 f0 mov -0x10(%ebp),%eax b15: a3 88 0e 00 00 mov %eax,0xe88 return (void*)(p + 1); b1a: 8b 45 f4 mov -0xc(%ebp),%eax b1d: 83 c0 08 add $0x8,%eax b20: eb 38 jmp b5a <malloc+0xde> } if(p == freep) b22: a1 88 0e 00 00 mov 0xe88,%eax b27: 39 45 f4 cmp %eax,-0xc(%ebp) b2a: 75 1b jne b47 <malloc+0xcb> if((p = morecore(nunits)) == 0) b2c: 8b 45 ec mov -0x14(%ebp),%eax b2f: 89 04 24 mov %eax,(%esp) b32: e8 ed fe ff ff call a24 <morecore> b37: 89 45 f4 mov %eax,-0xc(%ebp) b3a: 83 7d f4 00 cmpl $0x0,-0xc(%ebp) b3e: 75 07 jne b47 <malloc+0xcb> return 0; b40: b8 00 00 00 00 mov $0x0,%eax b45: eb 13 jmp b5a <malloc+0xde> nunits = (nbytes + sizeof(Header) - 1)/sizeof(Header) + 1; if((prevp = freep) == 0){ base.s.ptr = freep = prevp = &base; base.s.size = 0; } for(p = prevp->s.ptr; ; prevp = p, p = p->s.ptr){ b47: 8b 45 f4 mov -0xc(%ebp),%eax b4a: 89 45 f0 mov %eax,-0x10(%ebp) b4d: 8b 45 f4 mov -0xc(%ebp),%eax b50: 8b 00 mov (%eax),%eax b52: 89 45 f4 mov %eax,-0xc(%ebp) return (void*)(p + 1); } if(p == freep) if((p = morecore(nunits)) == 0) return 0; } b55: e9 70 ff ff ff jmp aca <malloc+0x4e> } b5a: c9 leave b5b: c3 ret
target/cos_117/disasm/iop_overlay1/XDK.asm
jrrk2/cray-sim
49
24828
<reponame>jrrk2/cray-sim<gh_stars>10-100 @@@@@@@@@@@@@@ Expander Disk test @@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@@ @@ Load address: 0x4B72 0x0000 (0x000000) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0001 (0x000002) 0x2918- f:00024 d: 280 | OR[280] = A 0x0002 (0x000004) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0003 (0x000006) 0x2919- f:00024 d: 281 | OR[281] = A 0x0004 (0x000008) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0005 (0x00000A) 0x291A- f:00024 d: 282 | OR[282] = A 0x0006 (0x00000C) 0x100F- f:00010 d: 15 | A = 15 (0x000F) 0x0007 (0x00000E) 0x290D- f:00024 d: 269 | OR[269] = A 0x0008 (0x000010) 0x210D- f:00020 d: 269 | A = OR[269] 0x0009 (0x000012) 0x120F- f:00011 d: 15 | A = A & 15 (0x000F) 0x000A (0x000014) 0x290D- f:00024 d: 269 | OR[269] = A 0x000B (0x000016) 0x2006- f:00020 d: 6 | A = OR[6] 0x000C (0x000018) 0x1402- f:00012 d: 2 | A = A + 2 (0x0002) 0x000D (0x00001A) 0x2908- f:00024 d: 264 | OR[264] = A 0x000E (0x00001C) 0x3108- f:00030 d: 264 | A = (OR[264]) 0x000F (0x00001E) 0x1A00-0xFFF0 f:00015 d: 0 | A = A & 65520 (0xFFF0) 0x0011 (0x000022) 0x250D- f:00022 d: 269 | A = A + OR[269] 0x0012 (0x000024) 0x3908- f:00034 d: 264 | (OR[264]) = A 0x0013 (0x000026) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0014 (0x000028) 0x291F- f:00024 d: 287 | OR[287] = A 0x0015 (0x00002A) 0x1800-0x0006 f:00014 d: 0 | A = 6 (0x0006) 0x0017 (0x00002E) 0x2920- f:00024 d: 288 | OR[288] = A 0x0018 (0x000030) 0x100F- f:00010 d: 15 | A = 15 (0x000F) 0x0019 (0x000032) 0x2720- f:00023 d: 288 | A = A - OR[288] 0x001A (0x000034) 0x120F- f:00011 d: 15 | A = A & 15 (0x000F) 0x001B (0x000036) 0x5800- f:00054 d: 0 | B = A 0x001C (0x000038) 0x211F- f:00020 d: 287 | A = OR[287] 0x001D (0x00003A) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001) 0x001E (0x00003C) 0x290D- f:00024 d: 269 | OR[269] = A 0x001F (0x00003E) 0x2120- f:00020 d: 288 | A = OR[288] 0x0020 (0x000040) 0x0804- f:00004 d: 4 | A = A > 4 (0x0004) 0x0021 (0x000042) 0x1C00-0x0E0D f:00016 d: 0 | A = A + 3597 (0x0E0D) 0x0023 (0x000046) 0x290E- f:00024 d: 270 | OR[270] = A 0x0024 (0x000048) 0x310E- f:00030 d: 270 | A = (OR[270]) 0x0025 (0x00004A) 0x4C00- f:00046 d: 0 | A = A >> B 0x0026 (0x00004C) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001) 0x0027 (0x00004E) 0x0A01- f:00005 d: 1 | A = A < 1 (0x0001) 0x0028 (0x000050) 0x250D- f:00022 d: 269 | A = A + OR[269] 0x0029 (0x000052) 0x4E00- f:00047 d: 0 | A = A << B 0x002A (0x000054) 0x390E- f:00034 d: 270 | (OR[270]) = A 0x002B (0x000056) 0x2118- f:00020 d: 280 | A = OR[280] 0x002C (0x000058) 0x861D- f:00103 d: 29 | P = P + 29 (0x0049), A # 0 0x002D (0x00005A) 0x1018- f:00010 d: 24 | A = 24 (0x0018) 0x002E (0x00005C) 0x2922- f:00024 d: 290 | OR[290] = A 0x002F (0x00005E) 0x102C- f:00010 d: 44 | A = 44 (0x002C) 0x0030 (0x000060) 0x2923- f:00024 d: 291 | OR[291] = A 0x0031 (0x000062) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0032 (0x000064) 0x2924- f:00024 d: 292 | OR[292] = A 0x0033 (0x000066) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0034 (0x000068) 0x2925- f:00024 d: 293 | OR[293] = A 0x0035 (0x00006A) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0036 (0x00006C) 0x2926- f:00024 d: 294 | OR[294] = A 0x0037 (0x00006E) 0x1118- f:00010 d: 280 | A = 280 (0x0118) 0x0038 (0x000070) 0x2927- f:00024 d: 295 | OR[295] = A 0x0039 (0x000072) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x003A (0x000074) 0x5800- f:00054 d: 0 | B = A 0x003B (0x000076) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x003C (0x000078) 0x7C09- f:00076 d: 9 | R = OR[9] 0x003D (0x00007A) 0x8602- f:00103 d: 2 | P = P + 2 (0x003F), A # 0 0x003E (0x00007C) 0x700A- f:00070 d: 10 | P = P + 10 (0x0048) 0x003F (0x00007E) 0x1007- f:00010 d: 7 | A = 7 (0x0007) 0x0040 (0x000080) 0x2922- f:00024 d: 290 | OR[290] = A 0x0041 (0x000082) 0x1001- f:00010 d: 1 | A = 1 (0x0001) 0x0042 (0x000084) 0x2923- f:00024 d: 291 | OR[291] = A 0x0043 (0x000086) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0044 (0x000088) 0x5800- f:00054 d: 0 | B = A 0x0045 (0x00008A) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x0047 (0x00008E) 0x7C09- f:00076 d: 9 | R = OR[9] 0x0048 (0x000090) 0x721D- f:00071 d: 29 | P = P - 29 (0x002B) 0x0049 (0x000092) 0x2118- f:00020 d: 280 | A = OR[280] 0x004A (0x000094) 0x1428- f:00012 d: 40 | A = A + 40 (0x0028) 0x004B (0x000096) 0x291B- f:00024 d: 283 | OR[283] = A 0x004C (0x000098) 0x2118- f:00020 d: 280 | A = OR[280] 0x004D (0x00009A) 0x290E- f:00024 d: 270 | OR[270] = A 0x004E (0x00009C) 0x102C- f:00010 d: 44 | A = 44 (0x002C) 0x004F (0x00009E) 0x290D- f:00024 d: 269 | OR[269] = A 0x0050 (0x0000A0) 0x210D- f:00020 d: 269 | A = OR[269] 0x0051 (0x0000A2) 0x8406- f:00102 d: 6 | P = P + 6 (0x0057), A = 0 0x0052 (0x0000A4) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0053 (0x0000A6) 0x390E- f:00034 d: 270 | (OR[270]) = A 0x0054 (0x0000A8) 0x2F0D- f:00027 d: 269 | OR[269] = OR[269] - 1 0x0055 (0x0000AA) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1 0x0056 (0x0000AC) 0x7206- f:00071 d: 6 | P = P - 6 (0x0050) 0x0057 (0x0000AE) 0x1800-0x0222 f:00014 d: 0 | A = 546 (0x0222) 0x0059 (0x0000B2) 0x291C- f:00024 d: 284 | OR[284] = A 0x005A (0x0000B4) 0x7522- f:00072 d: 290 | R = P + 290 (0x017C) 0x005B (0x0000B6) 0x311B- f:00030 d: 283 | A = (OR[283]) 0x005C (0x0000B8) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008) 0x005D (0x0000BA) 0x1659- f:00013 d: 89 | A = A - 89 (0x0059) 0x005E (0x0000BC) 0x86CD- f:00103 d: 205 | P = P + 205 (0x012B), A # 0 0x005F (0x0000BE) 0x1800-0xFFFF f:00014 d: 0 | A = 65535 (0xFFFF) 0x0061 (0x0000C2) 0x290D- f:00024 d: 269 | OR[269] = A 0x0062 (0x0000C4) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0063 (0x0000C6) 0x290E- f:00024 d: 270 | OR[270] = A 0x0064 (0x0000C8) 0x2006- f:00020 d: 6 | A = OR[6] 0x0065 (0x0000CA) 0x2910- f:00024 d: 272 | OR[272] = A @ Calling XOPN 0x0066 (0x0000CC) 0x1028- f:00010 d: 40 | A = 40 (0x0028) 0x0067 (0x0000CE) 0x2922- f:00024 d: 290 | OR[290] = A 0x0068 (0x0000D0) 0x1800-0x00A9 f:00014 d: 0 | A = 169 (0x00A9) 0x006A (0x0000D4) 0x2923- f:00024 d: 291 | OR[291] = A 0x006B (0x0000D6) 0x1800-0x444B f:00014 d: 0 | A = 17483 (0x444B) 0x006D (0x0000DA) 0x2924- f:00024 d: 292 | OR[292] = A 0x006E (0x0000DC) 0x210D- f:00020 d: 269 | A = OR[269] 0x006F (0x0000DE) 0x2925- f:00024 d: 293 | OR[293] = A 0x0070 (0x0000E0) 0x1004- f:00010 d: 4 | A = 4 (0x0004) 0x0071 (0x0000E2) 0x2926- f:00024 d: 294 | OR[294] = A 0x0072 (0x0000E4) 0x210E- f:00020 d: 270 | A = OR[270] 0x0073 (0x0000E6) 0x2927- f:00024 d: 295 | OR[295] = A 0x0074 (0x0000E8) 0x210F- f:00020 d: 271 | A = OR[271] 0x0075 (0x0000EA) 0x2928- f:00024 d: 296 | OR[296] = A 0x0076 (0x0000EC) 0x2110- f:00020 d: 272 | A = OR[272] 0x0077 (0x0000EE) 0x2929- f:00024 d: 297 | OR[297] = A 0x0078 (0x0000F0) 0x100D- f:00010 d: 13 | A = 13 (0x000D) 0x0079 (0x0000F2) 0x292A- f:00024 d: 298 | OR[298] = A 0x007A (0x0000F4) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x007B (0x0000F6) 0x5800- f:00054 d: 0 | B = A 0x007C (0x0000F8) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x007E (0x0000FC) 0x7C09- f:00076 d: 9 | R = OR[9] 0x007F (0x0000FE) 0x291D- f:00024 d: 285 | OR[285] = A 0x0080 (0x000100) 0x211D- f:00020 d: 285 | A = OR[285] 0x0081 (0x000102) 0x8602- f:00103 d: 2 | P = P + 2 (0x0083), A # 0 0x0082 (0x000104) 0x7002- f:00070 d: 2 | P = P + 2 (0x0084) 0x0083 (0x000106) 0x70A8- f:00070 d: 168 | P = P + 168 (0x012B) @ Make sure OR[282] is loaded with a non-0 value. If not, call overlay manager (???) to fill it in??? 0x0084 (0x000108) 0x211A- f:00020 d: 282 | A = OR[282] 0x0085 (0x00010A) 0x8615- f:00103 d: 21 | P = P + 21 (0x009A), A # 0 @ I'm not sure what's going on here, but this overlay manager call doesn't seem to actually call any overlays. @ It return 0xF800 in OR[282], which is incidentally the value passed in to the call... @ This seems to be a temp address for a 2k buffer. 0x0086 (0x00010C) 0x101A- f:00010 d: 26 | A = 26 (0x001A) 0x0087 (0x00010E) 0x2922- f:00024 d: 290 | OR[290] = A 0x0088 (0x000110) 0x111A- f:00010 d: 282 | A = 282 (0x011A) 0x0089 (0x000112) 0x2923- f:00024 d: 291 | OR[291] = A 0x008A (0x000114) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x008B (0x000116) 0x5800- f:00054 d: 0 | B = A 0x008C (0x000118) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x008D (0x00011A) 0x7C09- f:00076 d: 9 | R = OR[9] 0x008E (0x00011C) 0x8602- f:00103 d: 2 | P = P + 2 (0x0090), A # 0 0x008F (0x00011E) 0x700A- f:00070 d: 10 | P = P + 10 (0x0099) 0x0090 (0x000120) 0x1007- f:00010 d: 7 | A = 7 (0x0007) 0x0091 (0x000122) 0x2922- f:00024 d: 290 | OR[290] = A 0x0092 (0x000124) 0x1001- f:00010 d: 1 | A = 1 (0x0001) 0x0093 (0x000126) 0x2923- f:00024 d: 291 | OR[291] = A 0x0094 (0x000128) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0095 (0x00012A) 0x5800- f:00054 d: 0 | B = A 0x0096 (0x00012C) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x0098 (0x000130) 0x7C09- f:00076 d: 9 | R = OR[9] @ Make sure OR[282] is filled in 0x0099 (0x000132) 0x7215- f:00071 d: 21 | P = P - 21 (0x0084) @ It is.... @ Set up a large loop: @ OR[286] goes from 0 to 16460 0x009A (0x000134) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x009B (0x000136) 0x291E- f:00024 d: 286 | OR[286] = A 0x009C (0x000138) 0x211E- f:00020 d: 286 | A = OR[286] 0x009D (0x00013A) 0x1E00-0x404C f:00017 d: 0 | A = A - 16460 (0x404C) 0x009F (0x00013E) 0x8481- f:00102 d: 129 | P = P + 129 (0x0120), A = 0 @ OR[287] goes from 0 to 2048 - fill in the temp array pointed to by OR[282] 0x00A0 (0x000140) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x00A1 (0x000142) 0x291F- f:00024 d: 287 | OR[287] = A 0x00A2 (0x000144) 0x211F- f:00020 d: 287 | A = OR[287] 0x00A3 (0x000146) 0x1E00-0x0800 f:00017 d: 0 | A = A - 2048 (0x0800) 0x00A5 (0x00014A) 0x8408- f:00102 d: 8 | P = P + 8 (0x00AD), A = 0 0x00A6 (0x00014C) 0x211A- f:00020 d: 282 | A = OR[282] 0x00A7 (0x00014E) 0x251F- f:00022 d: 287 | A = A + OR[287] 0x00A8 (0x000150) 0x2920- f:00024 d: 288 | OR[288] = A 0x00A9 (0x000152) 0x2120- f:00020 d: 288 | A = OR[288] 0x00AA (0x000154) 0x3920- f:00034 d: 288 | (OR[288]) = A 0x00AB (0x000156) 0x2D1F- f:00026 d: 287 | OR[287] = OR[287] + 1 0x00AC (0x000158) 0x720A- f:00071 d: 10 | P = P - 10 (0x00A2) @ Test data is filled in @ Call device driver with function code 3 @ Layout: @ OR[290] - overlay manager command code (40) @ OR[291] - overlay number - XDISK @ OR[292] - driver desc. table address @ OR[293] - driver function code - 3 @ OR[294] - buffer address (OR[282]) @ OR[295] - ??? Not filled in ??? @ OR[296] - outer loop counter - maybe sector number, or something?? 0x00AD (0x00015A) 0x2119- f:00020 d: 281 | A = OR[281] 0x00AE (0x00015C) 0x1403- f:00012 d: 3 | A = A + 3 (0x0003) 0x00AF (0x00015E) 0x2908- f:00024 d: 264 | OR[264] = A 0x00B0 (0x000160) 0x3108- f:00030 d: 264 | A = (OR[264]) 0x00B1 (0x000162) 0x290D- f:00024 d: 269 | OR[269] = A 0x00B2 (0x000164) 0x1028- f:00010 d: 40 | A = 40 (0x0028) 0x00B3 (0x000166) 0x2922- f:00024 d: 290 | OR[290] = A 0x00B4 (0x000168) 0x210D- f:00020 d: 269 | A = OR[269] 0x00B5 (0x00016A) 0x2923- f:00024 d: 291 | OR[291] = A 0x00B6 (0x00016C) 0x2119- f:00020 d: 281 | A = OR[281] 0x00B7 (0x00016E) 0x2924- f:00024 d: 292 | OR[292] = A 0x00B8 (0x000170) 0x1003- f:00010 d: 3 | A = 3 (0x0003) 0x00B9 (0x000172) 0x2925- f:00024 d: 293 | OR[293] = A 0x00BA (0x000174) 0x211A- f:00020 d: 282 | A = OR[282] 0x00BB (0x000176) 0x2926- f:00024 d: 294 | OR[294] = A 0x00BC (0x000178) 0x211E- f:00020 d: 286 | A = OR[286] 0x00BD (0x00017A) 0x2928- f:00024 d: 296 | OR[296] = A 0x00BE (0x00017C) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x00BF (0x00017E) 0x5800- f:00054 d: 0 | B = A 0x00C0 (0x000180) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x00C2 (0x000184) 0x7C09- f:00076 d: 9 | R = OR[9] 0x00C3 (0x000186) 0x291D- f:00024 d: 285 | OR[285] = A 0x00C4 (0x000188) 0x211D- f:00020 d: 285 | A = OR[285] 0x00C5 (0x00018A) 0x8602- f:00103 d: 2 | P = P + 2 (0x00C7), A # 0 0x00C6 (0x00018C) 0x7006- f:00070 d: 6 | P = P + 6 (0x00CC) 0x00C7 (0x00018E) 0x211D- f:00020 d: 285 | A = OR[285] 0x00C8 (0x000190) 0x1609- f:00013 d: 9 | A = A - 9 (0x0009) 0x00C9 (0x000192) 0x8602- f:00103 d: 2 | P = P + 2 (0x00CB), A # 0 0x00CA (0x000194) 0x7002- f:00070 d: 2 | P = P + 2 (0x00CC) 0x00CB (0x000196) 0x7060- f:00070 d: 96 | P = P + 96 (0x012B) 0x00CC (0x000198) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x00CD (0x00019A) 0x291F- f:00024 d: 287 | OR[287] = A 0x00CE (0x00019C) 0x211F- f:00020 d: 287 | A = OR[287] 0x00CF (0x00019E) 0x1E00-0x0800 f:00017 d: 0 | A = A - 2048 (0x0800) 0x00D1 (0x0001A2) 0x8408- f:00102 d: 8 | P = P + 8 (0x00D9), A = 0 0x00D2 (0x0001A4) 0x211A- f:00020 d: 282 | A = OR[282] 0x00D3 (0x0001A6) 0x251F- f:00022 d: 287 | A = A + OR[287] 0x00D4 (0x0001A8) 0x2920- f:00024 d: 288 | OR[288] = A 0x00D5 (0x0001AA) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x00D6 (0x0001AC) 0x3920- f:00034 d: 288 | (OR[288]) = A 0x00D7 (0x0001AE) 0x2D1F- f:00026 d: 287 | OR[287] = OR[287] + 1 0x00D8 (0x0001B0) 0x720A- f:00071 d: 10 | P = P - 10 (0x00CE) @ Call device driver with function code 4 @ Layout: @ OR[290] - overlay manager command code (40) @ OR[291] - overlay number - XDISK @ OR[292] - driver desc. table address @ OR[293] - driver function code - 4 @ OR[294] - buffer address (OR[282]) @ OR[295] - ??? Not filled in ??? @ OR[296] - outer loop counter - maybe sector number, or something?? 0x00D9 (0x0001B2) 0x2119- f:00020 d: 281 | A = OR[281] 0x00DA (0x0001B4) 0x1403- f:00012 d: 3 | A = A + 3 (0x0003) 0x00DB (0x0001B6) 0x2908- f:00024 d: 264 | OR[264] = A 0x00DC (0x0001B8) 0x3108- f:00030 d: 264 | A = (OR[264]) 0x00DD (0x0001BA) 0x290D- f:00024 d: 269 | OR[269] = A 0x00DE (0x0001BC) 0x1028- f:00010 d: 40 | A = 40 (0x0028) 0x00DF (0x0001BE) 0x2922- f:00024 d: 290 | OR[290] = A 0x00E0 (0x0001C0) 0x210D- f:00020 d: 269 | A = OR[269] 0x00E1 (0x0001C2) 0x2923- f:00024 d: 291 | OR[291] = A 0x00E2 (0x0001C4) 0x2119- f:00020 d: 281 | A = OR[281] 0x00E3 (0x0001C6) 0x2924- f:00024 d: 292 | OR[292] = A 0x00E4 (0x0001C8) 0x1004- f:00010 d: 4 | A = 4 (0x0004) 0x00E5 (0x0001CA) 0x2925- f:00024 d: 293 | OR[293] = A 0x00E6 (0x0001CC) 0x211A- f:00020 d: 282 | A = OR[282] 0x00E7 (0x0001CE) 0x2926- f:00024 d: 294 | OR[294] = A 0x00E8 (0x0001D0) 0x211E- f:00020 d: 286 | A = OR[286] 0x00E9 (0x0001D2) 0x2928- f:00024 d: 296 | OR[296] = A 0x00EA (0x0001D4) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x00EB (0x0001D6) 0x5800- f:00054 d: 0 | B = A 0x00EC (0x0001D8) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x00EE (0x0001DC) 0x7C09- f:00076 d: 9 | R = OR[9] 0x00EF (0x0001DE) 0x291D- f:00024 d: 285 | OR[285] = A 0x00F0 (0x0001E0) 0x211D- f:00020 d: 285 | A = OR[285] 0x00F1 (0x0001E2) 0x8602- f:00103 d: 2 | P = P + 2 (0x00F3), A # 0 0x00F2 (0x0001E4) 0x7006- f:00070 d: 6 | P = P + 6 (0x00F8) 0x00F3 (0x0001E6) 0x211D- f:00020 d: 285 | A = OR[285] 0x00F4 (0x0001E8) 0x1609- f:00013 d: 9 | A = A - 9 (0x0009) 0x00F5 (0x0001EA) 0x8602- f:00103 d: 2 | P = P + 2 (0x00F7), A # 0 0x00F6 (0x0001EC) 0x7002- f:00070 d: 2 | P = P + 2 (0x00F8) 0x00F7 (0x0001EE) 0x7034- f:00070 d: 52 | P = P + 52 (0x012B) 0x00F8 (0x0001F0) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x00F9 (0x0001F2) 0x291F- f:00024 d: 287 | OR[287] = A 0x00FA (0x0001F4) 0x211F- f:00020 d: 287 | A = OR[287] 0x00FB (0x0001F6) 0x1E00-0x0800 f:00017 d: 0 | A = A - 2048 (0x0800) 0x00FD (0x0001FA) 0x8420- f:00102 d: 32 | P = P + 32 (0x011D), A = 0 0x00FE (0x0001FC) 0x211A- f:00020 d: 282 | A = OR[282] 0x00FF (0x0001FE) 0x251F- f:00022 d: 287 | A = A + OR[287] 0x0100 (0x000200) 0x2920- f:00024 d: 288 | OR[288] = A 0x0101 (0x000202) 0x3120- f:00030 d: 288 | A = (OR[288]) 0x0102 (0x000204) 0x2921- f:00024 d: 289 | OR[289] = A 0x0103 (0x000206) 0x2120- f:00020 d: 288 | A = OR[288] 0x0104 (0x000208) 0x2721- f:00023 d: 289 | A = A - OR[289] 0x0105 (0x00020A) 0x8602- f:00103 d: 2 | P = P + 2 (0x0107), A # 0 0x0106 (0x00020C) 0x7015- f:00070 d: 21 | P = P + 21 (0x011B) 0x0107 (0x00020E) 0x2120- f:00020 d: 288 | A = OR[288] 0x0108 (0x000210) 0x391B- f:00034 d: 283 | (OR[283]) = A 0x0109 (0x000212) 0x1800-0x0204 f:00014 d: 0 | A = 516 (0x0204) 0x010B (0x000216) 0x291C- f:00024 d: 284 | OR[284] = A 0x010C (0x000218) 0x7470- f:00072 d: 112 | R = P + 112 (0x017C) 0x010D (0x00021A) 0x2121- f:00020 d: 289 | A = OR[289] 0x010E (0x00021C) 0x391B- f:00034 d: 283 | (OR[283]) = A 0x010F (0x00021E) 0x1800-0x020F f:00014 d: 0 | A = 527 (0x020F) 0x0111 (0x000222) 0x291C- f:00024 d: 284 | OR[284] = A 0x0112 (0x000224) 0x746A- f:00072 d: 106 | R = P + 106 (0x017C) 0x0113 (0x000226) 0x1800-0x0222 f:00014 d: 0 | A = 546 (0x0222) 0x0115 (0x00022A) 0x291C- f:00024 d: 284 | OR[284] = A 0x0116 (0x00022C) 0x7466- f:00072 d: 102 | R = P + 102 (0x017C) 0x0117 (0x00022E) 0x311B- f:00030 d: 283 | A = (OR[283]) 0x0118 (0x000230) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008) 0x0119 (0x000232) 0x164E- f:00013 d: 78 | A = A - 78 (0x004E) 0x011A (0x000234) 0x8411- f:00102 d: 17 | P = P + 17 (0x012B), A = 0 0x011B (0x000236) 0x2D1F- f:00026 d: 287 | OR[287] = OR[287] + 1 0x011C (0x000238) 0x7222- f:00071 d: 34 | P = P - 34 (0x00FA) 0x011D (0x00023A) 0x7441- f:00072 d: 65 | R = P + 65 (0x015E) 0x011E (0x00023C) 0x2D1E- f:00026 d: 286 | OR[286] = OR[286] + 1 0x011F (0x00023E) 0x7283- f:00071 d: 131 | P = P - 131 (0x009C) @ End of write loop?? 0x0120 (0x000240) 0x101B- f:00010 d: 27 | A = 27 (0x001B) 0x0121 (0x000242) 0x2922- f:00024 d: 290 | OR[290] = A 0x0122 (0x000244) 0x211A- f:00020 d: 282 | A = OR[282] 0x0123 (0x000246) 0x2923- f:00024 d: 291 | OR[291] = A 0x0124 (0x000248) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0125 (0x00024A) 0x5800- f:00054 d: 0 | B = A 0x0126 (0x00024C) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0127 (0x00024E) 0x7C09- f:00076 d: 9 | R = OR[9] 0x0128 (0x000250) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0129 (0x000252) 0x291A- f:00024 d: 282 | OR[282] = A 0x012A (0x000254) 0x72A6- f:00071 d: 166 | P = P - 166 (0x0084) 0x012B (0x000256) 0x1800-0x021A f:00014 d: 0 | A = 538 (0x021A) 0x012D (0x00025A) 0x291C- f:00024 d: 284 | OR[284] = A 0x012E (0x00025C) 0x744E- f:00072 d: 78 | R = P + 78 (0x017C) 0x012F (0x00025E) 0x211A- f:00020 d: 282 | A = OR[282] 0x0130 (0x000260) 0x8602- f:00103 d: 2 | P = P + 2 (0x0132), A # 0 0x0131 (0x000262) 0x7009- f:00070 d: 9 | P = P + 9 (0x013A) 0x0132 (0x000264) 0x101B- f:00010 d: 27 | A = 27 (0x001B) 0x0133 (0x000266) 0x2922- f:00024 d: 290 | OR[290] = A 0x0134 (0x000268) 0x211A- f:00020 d: 282 | A = OR[282] 0x0135 (0x00026A) 0x2923- f:00024 d: 291 | OR[291] = A 0x0136 (0x00026C) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0137 (0x00026E) 0x5800- f:00054 d: 0 | B = A 0x0138 (0x000270) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0139 (0x000272) 0x7C09- f:00076 d: 9 | R = OR[9] 0x013A (0x000274) 0x2119- f:00020 d: 281 | A = OR[281] 0x013B (0x000276) 0x8602- f:00103 d: 2 | P = P + 2 (0x013D), A # 0 0x013C (0x000278) 0x7011- f:00070 d: 17 | P = P + 17 (0x014D) 0x013D (0x00027A) 0x1006- f:00010 d: 6 | A = 6 (0x0006) 0x013E (0x00027C) 0x290D- f:00024 d: 269 | OR[269] = A @ Call XCLS 0x013F (0x00027E) 0x1028- f:00010 d: 40 | A = 40 (0x0028) 0x0140 (0x000280) 0x2922- f:00024 d: 290 | OR[290] = A 0x0141 (0x000282) 0x1800-0x00A5 f:00014 d: 0 | A = 165 (0x00A5) 0x0143 (0x000286) 0x2923- f:00024 d: 291 | OR[291] = A 0x0144 (0x000288) 0x2119- f:00020 d: 281 | A = OR[281] 0x0145 (0x00028A) 0x2924- f:00024 d: 292 | OR[292] = A 0x0146 (0x00028C) 0x210D- f:00020 d: 269 | A = OR[269] 0x0147 (0x00028E) 0x2925- f:00024 d: 293 | OR[293] = A 0x0148 (0x000290) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0149 (0x000292) 0x5800- f:00054 d: 0 | B = A 0x014A (0x000294) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x014C (0x000298) 0x7C09- f:00076 d: 9 | R = OR[9] 0x014D (0x00029A) 0x2118- f:00020 d: 280 | A = OR[280] 0x014E (0x00029C) 0x8602- f:00103 d: 2 | P = P + 2 (0x0150), A # 0 0x014F (0x00029E) 0x7009- f:00070 d: 9 | P = P + 9 (0x0158) 0x0150 (0x0002A0) 0x1019- f:00010 d: 25 | A = 25 (0x0019) 0x0151 (0x0002A2) 0x2922- f:00024 d: 290 | OR[290] = A 0x0152 (0x0002A4) 0x2118- f:00020 d: 280 | A = OR[280] 0x0153 (0x0002A6) 0x2923- f:00024 d: 291 | OR[291] = A 0x0154 (0x0002A8) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0155 (0x0002AA) 0x5800- f:00054 d: 0 | B = A 0x0156 (0x0002AC) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0157 (0x0002AE) 0x7C09- f:00076 d: 9 | R = OR[9] @ Return from overlay?? 0x0158 (0x0002B0) 0x102A- f:00010 d: 42 | A = 42 (0x002A) 0x0159 (0x0002B2) 0x2922- f:00024 d: 290 | OR[290] = A 0x015A (0x0002B4) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x015B (0x0002B6) 0x5800- f:00054 d: 0 | B = A 0x015C (0x0002B8) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x015D (0x0002BA) 0x7C09- f:00076 d: 9 | R = OR[9] 0x015E (0x0002BC) 0x1800-0x0006 f:00014 d: 0 | A = 6 (0x0006) 0x0160 (0x0002C0) 0x2920- f:00024 d: 288 | OR[288] = A 0x0161 (0x0002C2) 0x100F- f:00010 d: 15 | A = 15 (0x000F) 0x0162 (0x0002C4) 0x2720- f:00023 d: 288 | A = A - OR[288] 0x0163 (0x0002C6) 0x120F- f:00011 d: 15 | A = A & 15 (0x000F) 0x0164 (0x0002C8) 0x5800- f:00054 d: 0 | B = A 0x0165 (0x0002CA) 0x2120- f:00020 d: 288 | A = OR[288] 0x0166 (0x0002CC) 0x0804- f:00004 d: 4 | A = A > 4 (0x0004) 0x0167 (0x0002CE) 0x1C00-0x0E0D f:00016 d: 0 | A = A + 3597 (0x0E0D) 0x0169 (0x0002D2) 0x290D- f:00024 d: 269 | OR[269] = A 0x016A (0x0002D4) 0x310D- f:00030 d: 269 | A = (OR[269]) 0x016B (0x0002D6) 0x4800- f:00044 d: 0 | A = A > B 0x016C (0x0002D8) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001) 0x016D (0x0002DA) 0x8E42- f:00107 d: 66 | P = P - 66 (0x012B), A # 0 0x016E (0x0002DC) 0x1800-0x0CF3 f:00014 d: 0 | A = 3315 (0x0CF3) 0x0170 (0x0002E0) 0x2908- f:00024 d: 264 | OR[264] = A 0x0171 (0x0002E2) 0x3108- f:00030 d: 264 | A = (OR[264]) 0x0172 (0x0002E4) 0x8602- f:00103 d: 2 | P = P + 2 (0x0174), A # 0 0x0173 (0x0002E6) 0x7008- f:00070 d: 8 | P = P + 8 (0x017B) 0x0174 (0x0002E8) 0x1004- f:00010 d: 4 | A = 4 (0x0004) 0x0175 (0x0002EA) 0x2922- f:00024 d: 290 | OR[290] = A 0x0176 (0x0002EC) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x0177 (0x0002EE) 0x5800- f:00054 d: 0 | B = A 0x0178 (0x0002F0) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x017A (0x0002F4) 0x7C09- f:00076 d: 9 | R = OR[9] 0x017B (0x0002F6) 0x0200- f:00001 d: 0 | EXIT 0x017C (0x0002F8) 0x211C- f:00020 d: 284 | A = OR[284] 0x017D (0x0002FA) 0x2403- f:00022 d: 3 | A = A + OR[3] 0x017E (0x0002FC) 0x291C- f:00024 d: 284 | OR[284] = A 0x017F (0x0002FE) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x0180 (0x000300) 0x2914- f:00024 d: 276 | OR[276] = A 0x0181 (0x000302) 0x1001- f:00010 d: 1 | A = 1 (0x0001) 0x0182 (0x000304) 0x2913- f:00024 d: 275 | OR[275] = A 0x0183 (0x000306) 0x2113- f:00020 d: 275 | A = OR[275] 0x0184 (0x000308) 0x842D- f:00102 d: 45 | P = P + 45 (0x01B1), A = 0 0x0185 (0x00030A) 0x2114- f:00020 d: 276 | A = OR[276] 0x0186 (0x00030C) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001) 0x0187 (0x00030E) 0x251C- f:00022 d: 284 | A = A + OR[284] 0x0188 (0x000310) 0x290D- f:00024 d: 269 | OR[269] = A 0x0189 (0x000312) 0x310D- f:00030 d: 269 | A = (OR[269]) 0x018A (0x000314) 0x290D- f:00024 d: 269 | OR[269] = A 0x018B (0x000316) 0x2114- f:00020 d: 276 | A = OR[276] 0x018C (0x000318) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001) 0x018D (0x00031A) 0x2908- f:00024 d: 264 | OR[264] = A 0x018E (0x00031C) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x018F (0x00031E) 0x2708- f:00023 d: 264 | A = A - OR[264] 0x0190 (0x000320) 0x8604- f:00103 d: 4 | P = P + 4 (0x0194), A # 0 0x0191 (0x000322) 0x210D- f:00020 d: 269 | A = OR[269] 0x0192 (0x000324) 0x0808- f:00004 d: 8 | A = A > 8 (0x0008) 0x0193 (0x000326) 0x290D- f:00024 d: 269 | OR[269] = A 0x0194 (0x000328) 0x210D- f:00020 d: 269 | A = OR[269] 0x0195 (0x00032A) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF) 0x0196 (0x00032C) 0x2913- f:00024 d: 275 | OR[275] = A 0x0197 (0x00032E) 0x2113- f:00020 d: 275 | A = OR[275] 0x0198 (0x000330) 0x12FF- f:00011 d: 255 | A = A & 255 (0x00FF) 0x0199 (0x000332) 0x290D- f:00024 d: 269 | OR[269] = A 0x019A (0x000334) 0x2114- f:00020 d: 276 | A = OR[276] 0x019B (0x000336) 0x0801- f:00004 d: 1 | A = A > 1 (0x0001) 0x019C (0x000338) 0x2518- f:00022 d: 280 | A = A + OR[280] 0x019D (0x00033A) 0x290E- f:00024 d: 270 | OR[270] = A 0x019E (0x00033C) 0x2114- f:00020 d: 276 | A = OR[276] 0x019F (0x00033E) 0x1201- f:00011 d: 1 | A = A & 1 (0x0001) 0x01A0 (0x000340) 0x2908- f:00024 d: 264 | OR[264] = A 0x01A1 (0x000342) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x01A2 (0x000344) 0x2708- f:00023 d: 264 | A = A - OR[264] 0x01A3 (0x000346) 0x8607- f:00103 d: 7 | P = P + 7 (0x01AA), A # 0 0x01A4 (0x000348) 0x310E- f:00030 d: 270 | A = (OR[270]) 0x01A5 (0x00034A) 0x0A09- f:00005 d: 9 | A = A < 9 (0x0009) 0x01A6 (0x00034C) 0x250D- f:00022 d: 269 | A = A + OR[269] 0x01A7 (0x00034E) 0x0C09- f:00006 d: 9 | A = A >> 9 (0x0009) 0x01A8 (0x000350) 0x390E- f:00034 d: 270 | (OR[270]) = A 0x01A9 (0x000352) 0x7006- f:00070 d: 6 | P = P + 6 (0x01AF) 0x01AA (0x000354) 0x310E- f:00030 d: 270 | A = (OR[270]) 0x01AB (0x000356) 0x1A00-0xFF00 f:00015 d: 0 | A = A & 65280 (0xFF00) 0x01AD (0x00035A) 0x250D- f:00022 d: 269 | A = A + OR[269] 0x01AE (0x00035C) 0x390E- f:00034 d: 270 | (OR[270]) = A 0x01AF (0x00035E) 0x2D14- f:00026 d: 276 | OR[276] = OR[276] + 1 0x01B0 (0x000360) 0x722D- f:00071 d: 45 | P = P - 45 (0x0183) 0x01B1 (0x000362) 0x211C- f:00020 d: 284 | A = OR[284] 0x01B2 (0x000364) 0x2603- f:00023 d: 3 | A = A - OR[3] 0x01B3 (0x000366) 0x291C- f:00024 d: 284 | OR[284] = A 0x01B4 (0x000368) 0x211C- f:00020 d: 284 | A = OR[284] 0x01B5 (0x00036A) 0x1E00-0x0204 f:00017 d: 0 | A = A - 516 (0x0204) 0x01B7 (0x00036E) 0x8406- f:00102 d: 6 | P = P + 6 (0x01BD), A = 0 0x01B8 (0x000370) 0x211C- f:00020 d: 284 | A = OR[284] 0x01B9 (0x000372) 0x1E00-0x020F f:00017 d: 0 | A = A - 527 (0x020F) 0x01BB (0x000376) 0x8402- f:00102 d: 2 | P = P + 2 (0x01BD), A = 0 0x01BC (0x000378) 0x7017- f:00070 d: 23 | P = P + 23 (0x01D3) 0x01BD (0x00037A) 0x1028- f:00010 d: 40 | A = 40 (0x0028) 0x01BE (0x00037C) 0x2922- f:00024 d: 290 | OR[290] = A 0x01BF (0x00037E) 0x1800-0x0011 f:00014 d: 0 | A = 17 (0x0011) 0x01C1 (0x000382) 0x2923- f:00024 d: 291 | OR[291] = A 0x01C2 (0x000384) 0x211B- f:00020 d: 283 | A = OR[283] 0x01C3 (0x000386) 0x2924- f:00024 d: 292 | OR[292] = A 0x01C4 (0x000388) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x01C5 (0x00038A) 0x2925- f:00024 d: 293 | OR[293] = A 0x01C6 (0x00038C) 0x1010- f:00010 d: 16 | A = 16 (0x0010) 0x01C7 (0x00038E) 0x2926- f:00024 d: 294 | OR[294] = A 0x01C8 (0x000390) 0x2118- f:00020 d: 280 | A = OR[280] 0x01C9 (0x000392) 0x2927- f:00024 d: 295 | OR[295] = A 0x01CA (0x000394) 0x1014- f:00010 d: 20 | A = 20 (0x0014) 0x01CB (0x000396) 0x2928- f:00024 d: 296 | OR[296] = A 0x01CC (0x000398) 0x1000- f:00010 d: 0 | A = 0 (0x0000) 0x01CD (0x00039A) 0x2929- f:00024 d: 297 | OR[297] = A 0x01CE (0x00039C) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x01CF (0x00039E) 0x5800- f:00054 d: 0 | B = A 0x01D0 (0x0003A0) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x01D2 (0x0003A4) 0x7C09- f:00076 d: 9 | R = OR[9] 0x01D3 (0x0003A6) 0x211C- f:00020 d: 284 | A = OR[284] 0x01D4 (0x0003A8) 0x1E00-0x0222 f:00017 d: 0 | A = A - 546 (0x0222) 0x01D6 (0x0003AC) 0x8202- f:00101 d: 2 | P = P + 2 (0x01D8), C = 1 0x01D7 (0x0003AE) 0x700F- f:00070 d: 15 | P = P + 15 (0x01E6) 0x01D8 (0x0003B0) 0x1011- f:00010 d: 17 | A = 17 (0x0011) 0x01D9 (0x0003B2) 0x2922- f:00024 d: 290 | OR[290] = A 0x01DA (0x0003B4) 0x2118- f:00020 d: 280 | A = OR[280] 0x01DB (0x0003B6) 0x2923- f:00024 d: 291 | OR[291] = A 0x01DC (0x0003B8) 0x1004- f:00010 d: 4 | A = 4 (0x0004) 0x01DD (0x0003BA) 0x2924- f:00024 d: 292 | OR[292] = A 0x01DE (0x0003BC) 0x211B- f:00020 d: 283 | A = OR[283] 0x01DF (0x0003BE) 0x2925- f:00024 d: 293 | OR[293] = A 0x01E0 (0x0003C0) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x01E1 (0x0003C2) 0x5800- f:00054 d: 0 | B = A 0x01E2 (0x0003C4) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x01E4 (0x0003C8) 0x7C09- f:00076 d: 9 | R = OR[9] 0x01E5 (0x0003CA) 0x700A- f:00070 d: 10 | P = P + 10 (0x01EF) 0x01E6 (0x0003CC) 0x1010- f:00010 d: 16 | A = 16 (0x0010) 0x01E7 (0x0003CE) 0x2922- f:00024 d: 290 | OR[290] = A 0x01E8 (0x0003D0) 0x2118- f:00020 d: 280 | A = OR[280] 0x01E9 (0x0003D2) 0x2923- f:00024 d: 291 | OR[291] = A 0x01EA (0x0003D4) 0x1122- f:00010 d: 290 | A = 290 (0x0122) 0x01EB (0x0003D6) 0x5800- f:00054 d: 0 | B = A 0x01EC (0x0003D8) 0x1800-0x1518 f:00014 d: 0 | A = 5400 (0x1518) 0x01EE (0x0003DC) 0x7C09- f:00076 d: 9 | R = OR[9] 0x01EF (0x0003DE) 0x2118- f:00020 d: 280 | A = OR[280] 0x01F0 (0x0003E0) 0x290E- f:00024 d: 270 | OR[270] = A 0x01F1 (0x0003E2) 0x1028- f:00010 d: 40 | A = 40 (0x0028) 0x01F2 (0x0003E4) 0x1601- f:00013 d: 1 | A = A - 1 (0x0001) 0x01F3 (0x0003E6) 0x290D- f:00024 d: 269 | OR[269] = A 0x01F4 (0x0003E8) 0x210D- f:00020 d: 269 | A = OR[269] 0x01F5 (0x0003EA) 0x8407- f:00102 d: 7 | P = P + 7 (0x01FC), A = 0 0x01F6 (0x0003EC) 0x1800-0x2020 f:00014 d: 0 | A = 8224 (0x2020) 0x01F8 (0x0003F0) 0x390E- f:00034 d: 270 | (OR[270]) = A 0x01F9 (0x0003F2) 0x2F0D- f:00027 d: 269 | OR[269] = OR[269] - 1 0x01FA (0x0003F4) 0x2D0E- f:00026 d: 270 | OR[270] = OR[270] + 1 0x01FB (0x0003F6) 0x7207- f:00071 d: 7 | P = P - 7 (0x01F4) 0x01FC (0x0003F8) 0x0200- f:00001 d: 0 | EXIT 0x01FD (0x0003FA) 0x0000- f:00000 d: 0 | PASS 0x01FE (0x0003FC) 0x5844- f:00054 d: 68 | B = A | **** non-standard encoding with D:0x0044 **** 0x01FF (0x0003FE) 0x4B3A- f:00045 d: 314 | A = A < B | **** non-standard encoding with D:0x013A **** 0x0200 (0x000400) 0x2044- f:00020 d: 68 | A = OR[68] 0x0201 (0x000402) 0x4154- f:00040 d: 340 | C = 1, io 0524 = DN 0x0202 (0x000404) 0x4120- f:00040 d: 288 | C = 1, io 0440 = DN 0x0203 (0x000406) 0x4558- f:00042 d: 344 | C = 1, IOB = DN | **** non-standard encoding with D:0x0158 **** 0x0204 (0x000408) 0x5045- f:00050 d: 69 | A = B | **** non-standard encoding with D:0x0045 **** 0x0205 (0x00040A) 0x4354- f:00041 d: 340 | C = 1, io 0524 = BZ 0x0206 (0x00040C) 0x4544- f:00042 d: 324 | C = 1, IOB = DN | **** non-standard encoding with D:0x0144 **** 0x0207 (0x00040E) 0x3A20- f:00035 d: 32 | (OR[32]) = A + (OR[32]) 0x0208 (0x000410) 0x0000- f:00000 d: 0 | PASS 0x0209 (0x000412) 0x5844- f:00054 d: 68 | B = A | **** non-standard encoding with D:0x0044 **** 0x020A (0x000414) 0x4B3A- f:00045 d: 314 | A = A < B | **** non-standard encoding with D:0x013A **** 0x020B (0x000416) 0x2044- f:00020 d: 68 | A = OR[68] 0x020C (0x000418) 0x4154- f:00040 d: 340 | C = 1, io 0524 = DN 0x020D (0x00041A) 0x4120- f:00040 d: 288 | C = 1, io 0440 = DN 0x020E (0x00041C) 0x5245- f:00051 d: 69 | A = A & B | **** non-standard encoding with D:0x0045 **** 0x020F (0x00041E) 0x4345- f:00041 d: 325 | C = 1, io 0505 = BZ 0x0210 (0x000420) 0x4956- f:00044 d: 342 | A = A > B | **** non-standard encoding with D:0x0156 **** 0x0211 (0x000422) 0x4544- f:00042 d: 324 | C = 1, IOB = DN | **** non-standard encoding with D:0x0144 **** 0x0212 (0x000424) 0x3A20- f:00035 d: 32 | (OR[32]) = A + (OR[32]) 0x0213 (0x000426) 0x0000- f:00000 d: 0 | PASS 0x0214 (0x000428) 0x5844- f:00054 d: 68 | B = A | **** non-standard encoding with D:0x0044 **** 0x0215 (0x00042A) 0x4B3A- f:00045 d: 314 | A = A < B | **** non-standard encoding with D:0x013A **** 0x0216 (0x00042C) 0x2054- f:00020 d: 84 | A = OR[84] 0x0217 (0x00042E) 0x4552- f:00042 d: 338 | C = 1, IOB = DN | **** non-standard encoding with D:0x0152 **** 0x0218 (0x000430) 0x4D49- f:00046 d: 329 | A = A >> B | **** non-standard encoding with D:0x0149 **** 0x0219 (0x000432) 0x4E41- f:00047 d: 65 | A = A << B | **** non-standard encoding with D:0x0041 **** 0x021A (0x000434) 0x5445- f:00052 d: 69 | A = A + B | **** non-standard encoding with D:0x0045 **** 0x021B (0x000436) 0x4400- f:00042 d: 0 | C = 1, IOB = DN 0x021C (0x000438) 0x5844- f:00054 d: 68 | B = A | **** non-standard encoding with D:0x0044 **** 0x021D (0x00043A) 0x4B3A- f:00045 d: 314 | A = A < B | **** non-standard encoding with D:0x013A **** 0x021E (0x00043C) 0x2054- f:00020 d: 84 | A = OR[84] 0x021F (0x00043E) 0x4849- f:00044 d: 73 | A = A > B | **** non-standard encoding with D:0x0049 **** 0x0220 (0x000440) 0x5320- f:00051 d: 288 | A = A & B | **** non-standard encoding with D:0x0120 **** 0x0221 (0x000442) 0x5445- f:00052 d: 69 | A = A + B | **** non-standard encoding with D:0x0045 **** 0x0222 (0x000444) 0x5354- f:00051 d: 340 | A = A & B | **** non-standard encoding with D:0x0154 **** 0x0223 (0x000446) 0x2057- f:00020 d: 87 | A = OR[87] 0x0224 (0x000448) 0x5249- f:00051 d: 73 | A = A & B | **** non-standard encoding with D:0x0049 **** 0x0225 (0x00044A) 0x5445- f:00052 d: 69 | A = A + B | **** non-standard encoding with D:0x0045 **** 0x0226 (0x00044C) 0x5320- f:00051 d: 288 | A = A & B | **** non-standard encoding with D:0x0120 **** 0x0227 (0x00044E) 0x4F56- f:00047 d: 342 | A = A << B | **** non-standard encoding with D:0x0156 **** 0x0228 (0x000450) 0x4552- f:00042 d: 338 | C = 1, IOB = DN | **** non-standard encoding with D:0x0152 **** 0x0229 (0x000452) 0x2054- f:00020 d: 84 | A = OR[84] 0x022A (0x000454) 0x4845- f:00044 d: 69 | A = A > B | **** non-standard encoding with D:0x0045 **** 0x022B (0x000456) 0x2045- f:00020 d: 69 | A = OR[69] 0x022C (0x000458) 0x4E54- f:00047 d: 84 | A = A << B | **** non-standard encoding with D:0x0054 **** 0x022D (0x00045A) 0x4952- f:00044 d: 338 | A = A > B | **** non-standard encoding with D:0x0152 **** 0x022E (0x00045C) 0x4520- f:00042 d: 288 | C = 1, IOB = DN | **** non-standard encoding with D:0x0120 **** 0x022F (0x00045E) 0x4449- f:00042 d: 73 | C = 1, IOB = DN | **** non-standard encoding with D:0x0049 **** 0x0230 (0x000460) 0x534B- f:00051 d: 331 | A = A & B | **** non-standard encoding with D:0x014B **** 0x0231 (0x000462) 0x202D- f:00020 d: 45 | A = OR[45] 0x0232 (0x000464) 0x2043- f:00020 d: 67 | A = OR[67] 0x0233 (0x000466) 0x4F4E- f:00047 d: 334 | A = A << B | **** non-standard encoding with D:0x014E **** 0x0234 (0x000468) 0x5449- f:00052 d: 73 | A = A + B | **** non-standard encoding with D:0x0049 **** 0x0235 (0x00046A) 0x4E55- f:00047 d: 85 | A = A << B | **** non-standard encoding with D:0x0055 **** 0x0236 (0x00046C) 0x453F- f:00042 d: 319 | C = 1, IOB = DN | **** non-standard encoding with D:0x013F **** 0x0237 (0x00046E) 0x0000- f:00000 d: 0 | PASS 0x0238 (0x000470) 0x5844- f:00054 d: 68 | B = A | **** non-standard encoding with D:0x0044 **** 0x0239 (0x000472) 0x4B3A- f:00045 d: 314 | A = A < B | **** non-standard encoding with D:0x013A **** 0x023A (0x000474) 0x2043- f:00020 d: 67 | A = OR[67] 0x023B (0x000476) 0x4F4E- f:00047 d: 334 | A = A << B | **** non-standard encoding with D:0x014E **** 0x023C (0x000478) 0x5449- f:00052 d: 73 | A = A + B | **** non-standard encoding with D:0x0049 **** 0x023D (0x00047A) 0x4E55- f:00047 d: 85 | A = A << B | **** non-standard encoding with D:0x0055 **** 0x023E (0x00047C) 0x453F- f:00042 d: 319 | C = 1, IOB = DN | **** non-standard encoding with D:0x013F **** 0x023F (0x00047E) 0x0000- f:00000 d: 0 | PASS 0x0240 (0x000480) 0x0000- f:00000 d: 0 | PASS 0x0241 (0x000482) 0x0000- f:00000 d: 0 | PASS 0x0242 (0x000484) 0x0000- f:00000 d: 0 | PASS 0x0243 (0x000486) 0x0000- f:00000 d: 0 | PASS
programs/asm/output.asm
Zenith80/initial_emulator
9
85923
;//puts [Display] ;//Prints a string to the screen ;//Inputs: ;// hl: address of string to print puts: ld a,(hl) cp 0 ret z out (0), a inc hl jr puts line: ld a, 0x0A out (0),a ret cls: ld a, 0 out (0), a ret ;//indexed_print [Display] ;//Prints a string based on array address and index ;//Inputs: ;// hl: array address ;// bc: index indexed_print: push hl add hl, bc add hl, bc ld e, (hl) inc hl ld d, (hl) push de \ pop hl call puts pop hl ret ;//looped_print [Display] ;//Print indexed strings in a loop ;//Inputs: ;// hl: array address ;// bc: starting index ;// a: number of strings to print looped_print: push af call indexed_print pop af inc bc dec a cp 0 jp nz, looped_print ret
sw/552tests/inst_tests/xori_2.asm
JPShen-UWM/ThreadKraken
1
103439
// Original test: ./rbatterm/hw4/problem6/xori_2.asm // Author: rbatterm // Test source code follows // test imm zero, reg ones lbi r2, 0 //00000 xori r1, r2, 31 //11111 halt //= 11111
Validation/pyFrame3DD-master/gcc-master/gcc/ada/exp_ch6.ads
djamal2727/Main-Bearing-Analytical-Model
0
29923
------------------------------------------------------------------------------ -- -- -- GNAT COMPILER COMPONENTS -- -- -- -- E X P _ C H 6 -- -- -- -- S p e c -- -- -- -- Copyright (C) 1992-2020, Free Software Foundation, Inc. -- -- -- -- GNAT is free software; you can redistribute it and/or modify it under -- -- terms of the GNU General Public License as published by the Free Soft- -- -- ware Foundation; either version 3, or (at your option) any later ver- -- -- sion. GNAT is distributed in the hope that it will be useful, but WITH- -- -- OUT ANY WARRANTY; without even the implied warranty of MERCHANTABILITY -- -- or FITNESS FOR A PARTICULAR PURPOSE. See the GNU General Public License -- -- for more details. You should have received a copy of the GNU General -- -- Public License distributed with GNAT; see file COPYING3. If not, go to -- -- http://www.gnu.org/licenses for a complete copy of the license. -- -- -- -- GNAT was originally developed by the GNAT team at New York University. -- -- Extensive contributions were provided by Ada Core Technologies Inc. -- -- -- ------------------------------------------------------------------------------ -- Expand routines for chapter 6 constructs with Types; use Types; package Exp_Ch6 is procedure Expand_N_Extended_Return_Statement (N : Node_Id); procedure Expand_N_Function_Call (N : Node_Id); procedure Expand_N_Procedure_Call_Statement (N : Node_Id); procedure Expand_N_Simple_Return_Statement (N : Node_Id); procedure Expand_N_Subprogram_Body (N : Node_Id); procedure Expand_N_Subprogram_Body_Stub (N : Node_Id); procedure Expand_N_Subprogram_Declaration (N : Node_Id); procedure Expand_Call (N : Node_Id); -- This procedure contains common processing for Expand_N_Function_Call, -- Expand_N_Procedure_Statement, and Expand_N_Entry_Call. procedure Freeze_Subprogram (N : Node_Id); -- generate the appropriate expansions related to Subprogram freeze -- nodes (e.g. the filling of the corresponding Dispatch Table for -- Primitive Operations) -- The following type defines the various forms of allocation used for the -- results of build-in-place function calls. type BIP_Allocation_Form is (Unspecified, Caller_Allocation, Secondary_Stack, Global_Heap, User_Storage_Pool); type BIP_Formal_Kind is -- Ada 2005 (AI-318-02): This type defines the kinds of implicit extra -- formals created for build-in-place functions. The order of these -- enumeration literals matches the order in which the formals are -- declared. See Sem_Ch6.Create_Extra_Formals. (BIP_Alloc_Form, -- Present if result subtype is unconstrained or tagged. Indicates -- whether the return object is allocated by the caller or callee, and -- if the callee, whether to use the secondary stack or the heap. See -- Create_Extra_Formals. BIP_Storage_Pool, -- Present if result subtype is unconstrained or tagged. If -- BIP_Alloc_Form = User_Storage_Pool, this is a pointer to the pool -- (of type access to Root_Storage_Pool'Class). Otherwise null. BIP_Finalization_Master, -- Present if result type needs finalization. Pointer to caller's -- finalization master. BIP_Task_Master, -- Present if result type contains tasks. Master associated with -- calling context. BIP_Activation_Chain, -- Present if result type contains tasks. Caller's activation chain BIP_Object_Access); -- Present for all build-in-place functions. Address at which to place -- the return object, or null if BIP_Alloc_Form indicates allocated by -- callee. -- -- ??? We might also need to be able to pass in a constrained flag. procedure Add_Extra_Actual_To_Call (Subprogram_Call : Node_Id; Extra_Formal : Entity_Id; Extra_Actual : Node_Id); -- Adds Extra_Actual as a named parameter association for the formal -- Extra_Formal in Subprogram_Call. function BIP_Formal_Suffix (Kind : BIP_Formal_Kind) return String; -- Ada 2005 (AI-318-02): Returns a string to be used as the suffix of names -- for build-in-place formal parameters of the given kind. function BIP_Suffix_Kind (E : Entity_Id) return BIP_Formal_Kind; -- Ada 2005 (AI-318-02): Returns the kind of the given BIP extra formal. function Build_In_Place_Formal (Func : Entity_Id; Kind : BIP_Formal_Kind) return Entity_Id; -- Ada 2005 (AI-318-02): Locates and returns the entity for the implicit -- build-in-place formal parameter of the given kind associated with the -- function Func, and returns its Entity_Id. It is a bug if not found; the -- caller should ensure this is called only when the extra formal exists. function Build_Procedure_Body_Form (Func_Id : Entity_Id; Func_Body : Node_Id) return Node_Id; -- Create a procedure body which emulates the behavior of function Func_Id. -- Func_Body is the root of the body of the function before its analysis. -- The returned node is the root of the procedure body which will replace -- the original function body, which is not needed for the C program. function Is_Build_In_Place_Entity (E : Entity_Id) return Boolean; -- Ada 2005 (AI-318-02): Returns True if E is a BIP entity. function Is_Build_In_Place_Result_Type (Typ : Entity_Id) return Boolean; -- Ada 2005 (AI-318-02): Returns True if functions returning the type use -- build-in-place protocols. For inherently limited types, this must be -- True in >= Ada 2005, and must be False in Ada 95. For other types, it -- can be True or False, and the decision should be based on efficiency, -- and should be the same for all language versions, so that mixed-dialect -- programs will work. -- -- For inherently limited types in Ada 2005, True means that calls will -- actually be build-in-place in all cases. For other types, build-in-place -- will be used when possible, but we need to make a copy at the call site -- in some cases, notably assignment statements. function Is_Build_In_Place_Function (E : Entity_Id) return Boolean; -- Ada 2005 (AI-318-02): Returns True if E denotes a function, generic -- function, or access-to-function type for which -- Is_Build_In_Place_Result_Type is True. However, we never use -- build-in-place if the convention is other than Ada, because that would -- disturb mixed-language programs. function Is_Build_In_Place_Function_Call (N : Node_Id) return Boolean; -- Ada 2005 (AI-318-02): Returns True if N denotes a call to a function -- that requires handling as a build-in-place call (possibly qualified or -- converted). function Is_Null_Procedure (Subp : Entity_Id) return Boolean; -- Predicate to recognize stubbed procedures and null procedures, which -- can be inlined unconditionally in all cases. procedure Make_Build_In_Place_Call_In_Allocator (Allocator : Node_Id; Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs as the expression initializing an allocator, by passing access -- to the allocated object as an additional parameter of the function call. -- A new access object is declared that is initialized to the result of the -- allocator, passed to the function, and the allocator is rewritten to -- refer to that access object. Function_Call must denote either an -- N_Function_Call node for which Is_Build_In_Place_Call is True, or else -- an N_Qualified_Expression node applied to such a function call. procedure Make_Build_In_Place_Call_In_Anonymous_Context (Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs in a context that does not provide a separate object. A temporary -- object is created to act as the return object and an access to the -- temporary is passed as an additional parameter of the call. This occurs -- in contexts such as subprogram call actuals and object renamings. -- Function_Call must denote either an N_Function_Call node for which -- Is_Build_In_Place_Call is True, or else an N_Qualified_Expression node -- applied to such a function call. procedure Make_Build_In_Place_Call_In_Assignment (Assign : Node_Id; Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs as the right-hand side of an assignment statement by passing -- access to the left-hand side as an additional parameter of the function -- call. Assign must denote a N_Assignment_Statement. Function_Call must -- denote either an N_Function_Call node for which Is_Build_In_Place_Call -- is True, or an N_Qualified_Expression node applied to such a function -- call. procedure Make_Build_In_Place_Call_In_Object_Declaration (Obj_Decl : Node_Id; Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs as the expression initializing an object declaration by -- passing access to the declared object as an additional parameter of the -- function call. Function_Call must denote either an N_Function_Call node -- for which Is_Build_In_Place_Call is True, or an N_Qualified_Expression -- node applied to such a function call. procedure Make_Build_In_Place_Iface_Call_In_Allocator (Allocator : Node_Id; Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs as the expression initializing an allocator, by passing access -- to the allocated object as an additional parameter of the function call. -- Function_Call must denote an expression containing a BIP function call -- and an enclosing call to Ada.Tags.Displace to displace the pointer to -- the returned BIP object to reference the secondary dispatch table of -- an interface. procedure Make_Build_In_Place_Iface_Call_In_Anonymous_Context (Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs in a context that does not provide a separate object. A temporary -- object is created to act as the return object and an access to the -- temporary is passed as an additional parameter of the call. This occurs -- in contexts such as subprogram call actuals and object renamings. -- Function_Call must denote an expression containing a BIP function call -- and an enclosing call to Ada.Tags.Displace to displace the pointer to -- the returned BIP object to reference the secondary dispatch table of -- an interface. procedure Make_Build_In_Place_Iface_Call_In_Object_Declaration (Obj_Decl : Node_Id; Function_Call : Node_Id); -- Ada 2005 (AI-318-02): Handle a call to a build-in-place function that -- occurs as the expression initializing an object declaration by passing -- access to the declared object as an additional parameter of the function -- call. Function_Call must denote an expression containing a BIP function -- call and an enclosing call to Ada.Tags.Displace to displace the pointer -- to the returned BIP object to reference the secondary dispatch table of -- an interface. procedure Make_CPP_Constructor_Call_In_Allocator (Allocator : Node_Id; Function_Call : Node_Id); -- Handle a call to a CPP constructor that occurs as the expression that -- initializes an allocator, by passing access to the allocated object as -- an additional parameter of the constructor call. A new access object is -- declared that is initialized to the result of the allocator, passed to -- the constructor, and the allocator is rewritten to refer to that access -- object. Function_Call must denote a call to a CPP_Constructor function. function Might_Have_Tasks (Typ : Entity_Id) return Boolean; -- Return True when type Typ has tasks or when it is a limited class-wide -- type (or subtype), since it might have task components. function Needs_BIP_Alloc_Form (Func_Id : Entity_Id) return Boolean; -- Ada 2005 (AI-318-02): Return True if the function needs an implicit -- BIP_Alloc_Form parameter (see type BIP_Formal_Kind). function Needs_BIP_Finalization_Master (Func_Id : Entity_Id) return Boolean; -- Ada 2005 (AI-318-02): Return True if the result subtype of function -- Func_Id might need finalization actions. This includes build-in-place -- functions with tagged result types, since they can be invoked via -- dispatching calls, and descendant types may require finalization. function Needs_BIP_Task_Actuals (Func_Id : Entity_Id) return Boolean; -- Return True if the function returns an object of a type that has tasks. function Unqual_BIP_Iface_Function_Call (Expr : Node_Id) return Node_Id; -- Return the inner BIP function call removing any qualification from Expr -- including qualified expressions, type conversions, references, unchecked -- conversions and calls to displace the pointer to the object, if Expr is -- an expression containing a call displacing the pointer to the BIP object -- to reference the secondary dispatch table of an interface; otherwise -- return Empty. end Exp_Ch6;
test/agda/FRP/JS/Test/Compiler.agda
agda/agda-frp-js
63
7701
<reponame>agda/agda-frp-js<gh_stars>10-100 -- Tests for the compiler itself open import FRP.JS.Bool using ( Bool ; true ; false ; not ) open import FRP.JS.QUnit using ( TestSuite ; test ; ok ; _,_ ) module FRP.JS.Test.Compiler where module A where module B where x = true f : Bool → Bool f x = y where y = true f′ : Bool → Bool f′ x = not y where y = false g : Bool → Bool → Bool g x = h where h : Bool → Bool h y = z where z = true mutual m1 = m2 m2 = true m3 = m1 tests : TestSuite tests = ( test "nested modules" ( ok "A.B.x" A.B.x) , test "where clauses" ( ok "f false" (f false) , ok "f′ false" (f′ false) , ok "g false false" (g false false) ) , test "mutual clauses" ( ok "m1" m1 , ok "m2" m2 , ok "m3" m3 ) )
examples/Termination/Sized/SizedNatAnnotated.agda
asr/agda-kanso
1
11873
{-# OPTIONS --sized-types --show-implicit #-} module SizedNatAnnotated where open import Size data Nat : {i : Size} -> Set where zero : {i : Size} -> Nat {↑ i} suc : {i : Size} -> Nat {i} -> Nat {↑ i} -- subtraction is non size increasing sub : {i : Size} -> Nat {i} -> Nat {∞} -> Nat {i} sub .{↑ i} (zero {i}) n = zero {i} sub .{↑ i} (suc {i} m) zero = suc {i} m sub .{↑ i} (suc {i} m) (suc n) = sub {i} m n -- div' m n computes ceiling(m/(n+1)) div' : {i : Size} -> Nat {i} -> Nat -> Nat {i} div' .{↑ i} (zero {i}) n = zero {i} div' .{↑ i} (suc {i} m) n = suc {i} (div' {i} (sub {i} m n) n)
Transynther/x86/_processed/AVXALIGN/_st_zr_/i3-7100_9_0x84_notsx.log_21829_439.asm
ljhsiun2/medusa
9
83933
<gh_stars>1-10 .global s_prepare_buffers s_prepare_buffers: push %r10 push %r12 push %r13 push %r8 push %rbp push %rcx push %rdi push %rsi lea addresses_WC_ht+0x11f29, %r10 nop nop nop nop nop add $49931, %r13 mov $0x6162636465666768, %rbp movq %rbp, %xmm3 and $0xffffffffffffffc0, %r10 movntdq %xmm3, (%r10) nop nop add %rsi, %rsi lea addresses_UC_ht+0x10fb4, %r12 add %r8, %r8 mov $0x6162636465666768, %rbp movq %rbp, %xmm1 movups %xmm1, (%r12) nop nop nop nop xor $54481, %r12 lea addresses_UC_ht+0xfd4c, %rsi lea addresses_UC_ht+0x18c4c, %rdi nop nop nop nop nop xor $24220, %r10 mov $24, %rcx rep movsw nop nop add %rsi, %rsi lea addresses_normal_ht+0x348c, %rbp nop nop xor $843, %r13 mov (%rbp), %si nop nop nop nop cmp %rbp, %rbp pop %rsi pop %rdi pop %rcx pop %rbp pop %r8 pop %r13 pop %r12 pop %r10 ret .global s_faulty_load s_faulty_load: push %r10 push %r11 push %r13 push %r8 push %r9 push %rbp push %rdi // Store lea addresses_WT+0x17bf8, %r13 nop nop nop nop mfence mov $0x5152535455565758, %rdi movq %rdi, %xmm4 and $0xffffffffffffffc0, %r13 vmovaps %ymm4, (%r13) nop and $3238, %rbp // Store lea addresses_RW+0x1aa4c, %r11 nop cmp %r10, %r10 movw $0x5152, (%r11) nop nop nop nop nop xor $19325, %r13 // Load lea addresses_US+0xb668, %r11 nop nop nop add %r13, %r13 mov (%r11), %rdi nop nop nop cmp $2245, %r8 // Store mov $0xe6e930000000d99, %rdi nop nop nop nop dec %r13 movb $0x51, (%rdi) nop nop nop nop add $26465, %r11 // Faulty Load lea addresses_normal+0x4d4c, %r11 nop nop xor %r8, %r8 vmovaps (%r11), %ymm6 vextracti128 $0, %ymm6, %xmm6 vpextrq $1, %xmm6, %r10 lea oracles, %r9 and $0xff, %r10 shlq $12, %r10 mov (%r9,%r10,1), %r10 pop %rdi pop %rbp pop %r9 pop %r8 pop %r13 pop %r11 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'type': 'addresses_normal', 'same': False, 'size': 2, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_WT', 'same': False, 'size': 32, 'congruent': 2, 'NT': False, 'AVXalign': True}, 'OP': 'STOR'} {'dst': {'type': 'addresses_RW', 'same': False, 'size': 2, 'congruent': 8, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_US', 'same': False, 'size': 8, 'congruent': 1, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'dst': {'type': 'addresses_NC', 'same': False, 'size': 1, 'congruent': 0, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} [Faulty Load] {'src': {'type': 'addresses_normal', 'same': True, 'size': 32, 'congruent': 0, 'NT': False, 'AVXalign': True}, 'OP': 'LOAD'} <gen_prepare_buffer> {'dst': {'type': 'addresses_WC_ht', 'same': False, 'size': 16, 'congruent': 0, 'NT': True, 'AVXalign': False}, 'OP': 'STOR'} {'dst': {'type': 'addresses_UC_ht', 'same': False, 'size': 16, 'congruent': 3, 'NT': False, 'AVXalign': False}, 'OP': 'STOR'} {'src': {'type': 'addresses_UC_ht', 'congruent': 11, 'same': False}, 'dst': {'type': 'addresses_UC_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM'} {'src': {'type': 'addresses_normal_ht', 'same': False, 'size': 2, 'congruent': 6, 'NT': False, 'AVXalign': False}, 'OP': 'LOAD'} {'37': 1, '00': 21828} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
source/containers/a-concom.adb
ytomino/drake
33
27098
package body Ada.Containers.Composites is function LE (Left, Right : Element_Type) return Boolean is begin return not (Right < Left); end LE; function GT (Left, Right : Element_Type) return Boolean is begin return Right < Left; end GT; function GE (Left, Right : Element_Type) return Boolean is begin return not (Left < Right); end GE; function Compare (Left, Right : Element_Type) return Integer is begin if Left < Right then return -1; elsif Right < Left then return 1; else return 0; end if; end Compare; function Composite (A : A_Type) return R_Type is begin return F2 (F1 (A)); end Composite; function XXR_Bind_1st (A2 : A2_Type) return R_Type is begin return F (A1, A2); end XXR_Bind_1st; function XXR_Bind_2nd (A1 : A1_Type) return R_Type is begin return F (A1, A2); end XXR_Bind_2nd; function XR_Not (A1 : A1_Type) return Boolean is begin return not F (A1); end XR_Not; procedure XZ_Inout_1st (A1 : in out A1_Type; A2 : out A2_Type) is pragma Unmodified (A1); begin P (A1, A2); end XZ_Inout_1st; end Ada.Containers.Composites;
Library/Bitmap/textTool.asm
steakknife/pcgeos
504
178425
COMMENT @---------------------------------------------------------------------- Copyright (c) GeoWorks 1990 -- All Rights Reserved PROJECT: PC GEOS MODULE: Bitmap Library FILE: textTool.asm REVISION HISTORY: Name Date Description ---- ---- ----------- Jon 5/91 Initial Version DESCRIPTION: This file contains the implementation of the TextToolClass. RCS STAMP: $Id: textTool.asm,v 1.1 97/04/04 17:43:35 newdeal Exp $ ------------------------------------------------------------------------------@ if 0 idata segment TextToolClass idata ends BitmapToolCodeResource segment resource ;start of tool code resource TextInitialize method TextToolClass, MSG_META_INITIALIZE mov di, offset TextToolClass call ObjCallSuperNoLock mov di, ds:[si] mov ds:[di].TI_constrainStrategy, mask CS_NEVER_CONSTRAIN ret TextInitialize endm COMMENT @%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% TextToolAfterCreate %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%% SYNOPSIS: MSG_AFTER_CREATE handler for TextToolClass. CALLED BY: PASS: *ds:si = TextTool object ds:di = TextTool instance CHANGES: RETURN: DESTROYED: nothing PSEUDO CODE/STRATEGY: KNOWN BUGS/IDEAS: REVISION HISTORY: Name Date Description ---- ---- ----------- jon 6/91 initial version %%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%@ TextToolAfterCreate method TextToolClass, MSG_TOOL_AFTER_CREATE ; ; Call superclass to create the vis link to the bitmap ; mov di, offset TextToolClass call ObjCallSuperNoLock ; ; Get the VTFB OD and store it away ; mov ax, MSG_VIS_BITMAP_GET_VTFB_OD call ToolCallBitmap mov di, ds:[si] mov ds:[di].TTI_visText.handle, cx mov ds:[di].TTI_visText.offset, dx ret TextToolAfterCreate endm TextToolStart method TextToolClass, MSG_META_START_SELECT mov bx, MSG_VTFB_START_SELECT call TextToolCallVTFBCommon jc done ; tst ds:[di].TI_editingKit.TEK_screenGState jz callSuper mov ax, MSG_TOOL_FINISH_EDITING call ObjCallInstanceNoLock callSuper: mov di, segment TextToolClass mov es, di mov di, offset TextToolClass mov ax, MSG_META_START_SELECT call ObjCallSuperNoLock done: ret TextToolStart endm TextToolDrag method TextToolClass, MSG_META_DRAG_SELECT mov bx, MSG_VTFB_DRAG_SELECT call TextToolCallVTFBCommon jc done mov ax, MSG_TOOL_REQUEST_EDITING_KIT call ObjCallInstanceNoLock done: ret TextToolDrag endm TextToolPtr method TextToolClass, MSG_META_PTR mov bx, MSG_VTFB_PTR call TextToolCallVTFBCommon jc done mov di, segment TextToolClass mov es, di mov di, offset TextToolClass call ObjCallSuperNoLock done: ret TextToolPtr endm TextToolEnd method TextToolClass, MSG_META_END_SELECT mov bx, MSG_VTFB_END_SELECT call TextToolCallVTFBCommon jc done ; mov bp, ds:[di].TI_editingKit.TEK_screenGState tst bp jz done call ToolReleaseMouse mov ax, MSG_DRAG_TOOL_DRAW_OUTLINE call ObjCallInstanceNoLock xchg di, bp call GrRestoreState xchg di, bp mov cx, ds:[di].TI_initialX mov bp, ds:[di].TI_previousX cmp cx, bp jle gotX xchg cx, bp gotX: mov dx, ds:[di].TI_initialY cmp dx, ds:[di].TI_previousY jle gotY mov dx, ds:[di].TI_previousY gotY: sub bp, cx mov ax, MSG_VIS_BITMAP_PREPARE_VTFB call ToolCallBitmap done: ret TextToolEnd endm TextToolCallVTFBCommon proc near class TextToolClass uses ax, bx, di, si .enter mov_trash ax, bx mov bx, ds:[di].TTI_visText.handle mov si, ds:[di].TTI_visText.offset mov di, mask MF_FIXUP_DS call ObjMessage .leave ret TextToolCallVTFBCommon endp TextToolFinishEditing method TextToolClass, MSG_TOOL_FINISH_EDITING uses ax, cx, dx, bp .enter clr bp ; xchg bp, ds:[di].TI_editingKit.TEK_screenGState tst bp jz done push si ;save tool offset push di ;save instance ptr mov bx, ds:[di].TTI_visText.handle mov si, ds:[di].TTI_visText.chunk ; ; If the text field is empty, then we don't want to draw anything ; to the screen ; mov ax, MSG_VIS_TEXT_GET_TEXT_SIZE mov di, mask MF_FIXUP_DS or mask MF_CALL call ObjMessage tst ax pop di ;di <- instance ptr ; mov cx, ds:[di].TI_editingKit.TEK_gstate1 ; mov dx, ds:[di].TI_editingKit.TEK_gstate2 jz afterDraw ; ; Draw the text object into the screen ; mov ax, MSG_VIS_DRAW mov di, mask MF_FIXUP_DS call ObjMessage ; ; if cx (= gstate 1 handle) is nonzero, draw to it ; jcxz tryGState2 mov bp, cx ;bp <- gstate 1 mov ax, MSG_VIS_DRAW mov di, mask MF_FIXUP_DS call ObjMessage tryGState2: tst dx jz afterDraw mov bp, dx ;bp <- gstate 2 mov ax, MSG_VIS_DRAW mov di, mask MF_FIXUP_DS call ObjMessage afterDraw: mov ax, MSG_VTFB_DISAPPEAR mov di, mask MF_FIXUP_DS call ObjMessage ; ; Signal that we are done with the gstate ; pop si mov ax, MSG_VIS_BITMAP_NOTIFY_CURRENT_EDIT_FINISHED call ToolCallBitmap done: .leave ret TextToolFinishEditing endm BitmapToolCodeResource ends ;end of tool code resource endif
bin_ada/b~sorting_exercise.adb
thieryw/sorting_algo
0
5694
pragma Ada_95; pragma Warnings (Off); pragma Source_File_Name (ada_main, Spec_File_Name => "b~sorting_exercise.ads"); pragma Source_File_Name (ada_main, Body_File_Name => "b~sorting_exercise.adb"); pragma Suppress (Overflow_Check); with Ada.Exceptions; package body ada_main is E079 : Short_Integer; pragma Import (Ada, E079, "system__os_lib_E"); E013 : Short_Integer; pragma Import (Ada, E013, "system__soft_links_E"); E023 : Short_Integer; pragma Import (Ada, E023, "system__exception_table_E"); E054 : Short_Integer; pragma Import (Ada, E054, "ada__io_exceptions_E"); E103 : Short_Integer; pragma Import (Ada, E103, "ada__numerics_E"); E056 : Short_Integer; pragma Import (Ada, E056, "ada__tags_E"); E053 : Short_Integer; pragma Import (Ada, E053, "ada__streams_E"); E077 : Short_Integer; pragma Import (Ada, E077, "interfaces__c_E"); E025 : Short_Integer; pragma Import (Ada, E025, "system__exceptions_E"); E082 : Short_Integer; pragma Import (Ada, E082, "system__file_control_block_E"); E072 : Short_Integer; pragma Import (Ada, E072, "system__file_io_E"); E075 : Short_Integer; pragma Import (Ada, E075, "system__finalization_root_E"); E073 : Short_Integer; pragma Import (Ada, E073, "ada__finalization_E"); E111 : Short_Integer; pragma Import (Ada, E111, "ada__calendar_E"); E109 : Short_Integer; pragma Import (Ada, E109, "system__random_seed_E"); E017 : Short_Integer; pragma Import (Ada, E017, "system__secondary_stack_E"); E051 : Short_Integer; pragma Import (Ada, E051, "ada__text_io_E"); Local_Priority_Specific_Dispatching : constant String := ""; Local_Interrupt_States : constant String := ""; Is_Elaborated : Boolean := False; procedure finalize_library is begin E051 := E051 - 1; declare procedure F1; pragma Import (Ada, F1, "ada__text_io__finalize_spec"); begin F1; end; declare procedure F2; pragma Import (Ada, F2, "system__file_io__finalize_body"); begin E072 := E072 - 1; F2; end; declare procedure Reraise_Library_Exception_If_Any; pragma Import (Ada, Reraise_Library_Exception_If_Any, "__gnat_reraise_library_exception_if_any"); begin Reraise_Library_Exception_If_Any; end; end finalize_library; procedure adafinal is procedure s_stalib_adafinal; pragma Import (C, s_stalib_adafinal, "system__standard_library__adafinal"); procedure Runtime_Finalize; pragma Import (C, Runtime_Finalize, "__gnat_runtime_finalize"); begin if not Is_Elaborated then return; end if; Is_Elaborated := False; Runtime_Finalize; s_stalib_adafinal; end adafinal; type No_Param_Proc is access procedure; procedure adainit is Main_Priority : Integer; pragma Import (C, Main_Priority, "__gl_main_priority"); Time_Slice_Value : Integer; pragma Import (C, Time_Slice_Value, "__gl_time_slice_val"); WC_Encoding : Character; pragma Import (C, WC_Encoding, "__gl_wc_encoding"); Locking_Policy : Character; pragma Import (C, Locking_Policy, "__gl_locking_policy"); Queuing_Policy : Character; pragma Import (C, Queuing_Policy, "__gl_queuing_policy"); Task_Dispatching_Policy : Character; pragma Import (C, Task_Dispatching_Policy, "__gl_task_dispatching_policy"); Priority_Specific_Dispatching : System.Address; pragma Import (C, Priority_Specific_Dispatching, "__gl_priority_specific_dispatching"); Num_Specific_Dispatching : Integer; pragma Import (C, Num_Specific_Dispatching, "__gl_num_specific_dispatching"); Main_CPU : Integer; pragma Import (C, Main_CPU, "__gl_main_cpu"); Interrupt_States : System.Address; pragma Import (C, Interrupt_States, "__gl_interrupt_states"); Num_Interrupt_States : Integer; pragma Import (C, Num_Interrupt_States, "__gl_num_interrupt_states"); Unreserve_All_Interrupts : Integer; pragma Import (C, Unreserve_All_Interrupts, "__gl_unreserve_all_interrupts"); Detect_Blocking : Integer; pragma Import (C, Detect_Blocking, "__gl_detect_blocking"); Default_Stack_Size : Integer; pragma Import (C, Default_Stack_Size, "__gl_default_stack_size"); Leap_Seconds_Support : Integer; pragma Import (C, Leap_Seconds_Support, "__gl_leap_seconds_support"); Bind_Env_Addr : System.Address; pragma Import (C, Bind_Env_Addr, "__gl_bind_env_addr"); procedure Runtime_Initialize (Install_Handler : Integer); pragma Import (C, Runtime_Initialize, "__gnat_runtime_initialize"); Finalize_Library_Objects : No_Param_Proc; pragma Import (C, Finalize_Library_Objects, "__gnat_finalize_library_objects"); begin if Is_Elaborated then return; end if; Is_Elaborated := True; Main_Priority := -1; Time_Slice_Value := -1; WC_Encoding := 'b'; Locking_Policy := ' '; Queuing_Policy := ' '; Task_Dispatching_Policy := ' '; Priority_Specific_Dispatching := Local_Priority_Specific_Dispatching'Address; Num_Specific_Dispatching := 0; Main_CPU := -1; Interrupt_States := Local_Interrupt_States'Address; Num_Interrupt_States := 0; Unreserve_All_Interrupts := 0; Detect_Blocking := 0; Default_Stack_Size := -1; Leap_Seconds_Support := 0; Runtime_Initialize (1); Finalize_Library_Objects := finalize_library'access; System.Soft_Links'Elab_Spec; System.Exception_Table'Elab_Body; E023 := E023 + 1; Ada.Io_Exceptions'Elab_Spec; E054 := E054 + 1; Ada.Numerics'Elab_Spec; E103 := E103 + 1; Ada.Tags'Elab_Spec; Ada.Streams'Elab_Spec; E053 := E053 + 1; Interfaces.C'Elab_Spec; System.Exceptions'Elab_Spec; E025 := E025 + 1; System.File_Control_Block'Elab_Spec; E082 := E082 + 1; System.Finalization_Root'Elab_Spec; E075 := E075 + 1; Ada.Finalization'Elab_Spec; E073 := E073 + 1; Ada.Calendar'Elab_Spec; Ada.Calendar'Elab_Body; E111 := E111 + 1; System.Random_Seed'Elab_Body; E109 := E109 + 1; System.File_Io'Elab_Body; E072 := E072 + 1; E077 := E077 + 1; Ada.Tags'Elab_Body; E056 := E056 + 1; System.Soft_Links'Elab_Body; E013 := E013 + 1; System.Os_Lib'Elab_Body; E079 := E079 + 1; System.Secondary_Stack'Elab_Body; E017 := E017 + 1; Ada.Text_Io'Elab_Spec; Ada.Text_Io'Elab_Body; E051 := E051 + 1; end adainit; procedure Ada_Main_Program; pragma Import (Ada, Ada_Main_Program, "_ada_sorting_exercise"); function main (argc : Integer; argv : System.Address; envp : System.Address) return Integer is procedure Initialize (Addr : System.Address); pragma Import (C, Initialize, "__gnat_initialize"); procedure Finalize; pragma Import (C, Finalize, "__gnat_finalize"); SEH : aliased array (1 .. 2) of Integer; Ensure_Reference : aliased System.Address := Ada_Main_Program_Name'Address; pragma Volatile (Ensure_Reference); begin gnat_argc := argc; gnat_argv := argv; gnat_envp := envp; Initialize (SEH'Address); adainit; Ada_Main_Program; adafinal; Finalize; return (gnat_exit_status); end; -- BEGIN Object file/option list -- ./sorting_exercise.o -- -L./ -- -L/usr/lib/gcc/x86_64-linux-gnu/6/adalib/ -- -shared -- -lgnat-6 -- END Object file/option list end ada_main;
oeis/177/A177825.asm
neoneye/loda-programs
11
96406
<gh_stars>10-100 ; A177825: Expansion of 1/((1 + x^3 - x^4)*(1 - x)). ; Submitted by <NAME> ; 1,1,1,0,1,1,2,0,1,0,3,0,2,-2,4,-1,5,-5,6,-5,11,-10,12,-15,22,-21,28,-36,44,-48,65,-79,93,-112,145,-171,206,-256,317,-376,463,-572,694,-838,1036,-1265,1533,-1873,2302,-2797,3407,-4174,5100,-6203,7582,-9273,11304,-13784,16856,-20576,25089,-30639,37433,-45664,55729,-68071,83098,-101392,123801,-151168,184491,-225192,274970,-335658,409684,-500161,610629,-745341,909846,-1110789,1355971,-1655186,2020636,-2466759,3011158,-3675821,4487396,-5477916,6686980,-8163216,9965313,-12164895,14850197,-18128528 lpb $0 sub $0,1 sub $3,$4 add $1,$3 add $2,$3 add $4,1 mov $5,$4 mov $4,$2 mov $2,$3 add $2,$5 add $4,$1 lpe mov $0,$3 add $0,1
FormalAnalyzer/models/meta/cap_contactSensor.als
Mohannadcse/IoTCOM_BehavioralRuleExtractor
0
3104
// filename: cap_contactSensor.als module cap_contactSensor open IoTBottomUp one sig cap_contactSensor extends Capability {} { attributes = cap_contactSensor_attr } abstract sig cap_contactSensor_attr extends Attribute {} one sig cap_contactSensor_attr_contact extends cap_contactSensor_attr {} { values = cap_contactSensor_attr_contact_val } abstract sig cap_contactSensor_attr_contact_val extends AttrValue {} one sig cap_contactSensor_attr_contact_val_closed extends cap_contactSensor_attr_contact_val {} one sig cap_contactSensor_attr_contact_val_open extends cap_contactSensor_attr_contact_val {}
Loader/loader.asm
vincent102416849/x86_os_development
0
165281
<reponame>vincent102416849/x86_os_development [BITS 16] [ORG 0x7e00] Start: mov ah,0x13 mov al,1 mov bx,0xa xor dx,dx mov bp,Message mov cx,MessageLen int 0x10 End: hlt jmp End Message: db "loader starts" MessageLen: equ $-Message
lib/sms_crt0.asm
grancier/z180
0
2632
<gh_stars>0 ; Startup Code for Sega Master System ; ; <NAME> February 2006 ; ; $Id: sms_crt0.asm,v 1.20 2016/07/13 22:12:25 dom Exp $ ; DEFC ROM_Start = $0000 DEFC INT_Start = $0038 DEFC NMI_Start = $0066 DEFC CODE_Start = $0100 DEFC RAM_Start = $C000 DEFC RAM_Length = $2000 DEFC Stack_Top = $dff0 MODULE sms_crt0 ;------- ; Include zcc_opt.def to find out information about us ;------- defc crt0 = 1 INCLUDE "zcc_opt.def" ;------- ; Some general scope declarations ;------- EXTERN _main ;main() is always external to crt0 code PUBLIC cleanup ;jp'd to by exit() PUBLIC l_dcal ;jp(hl) PUBLIC fputc_vdp_offs ;Current character pointer PUBLIC aPLibMemory_bits;apLib support variable PUBLIC aPLibMemory_byte;apLib support variable PUBLIC aPLibMemory_LWM ;apLib support variable PUBLIC aPLibMemory_R0 ;apLib support variable PUBLIC raster_procs ;Raster interrupt handlers PUBLIC pause_procs ;Pause interrupt handlers PUBLIC timer ;This is incremented every time a VBL/HBL interrupt happens PUBLIC _pause_flag ;This alternates between 0 and 1 every time pause is pressed PUBLIC RG0SAV ;keeping track of VDP register values PUBLIC RG1SAV PUBLIC RG2SAV PUBLIC RG3SAV PUBLIC RG4SAV PUBLIC RG5SAV PUBLIC RG6SAV PUBLIC RG7SAV org ROM_Start jp start defm "Sega Master System - Small C+" ;------- ; Interrupt handlers ;------- filler1: defs (INT_Start - filler1) int_RASTER: push hl ld a, ($BF) or a jp p, int_not_VBL ; Bit 7 not set jr int_VBL int_not_VBL: pop hl reti int_VBL: ld hl, timer ld a, (hl) inc a ld (hl), a inc hl ld a, (hl) adc a, 1 ld (hl), a ;Increments the timer ld hl, raster_procs jr int_handler filler2: defs (NMI_Start - filler2) int_PAUSE: push hl ld hl, _pause_flag ld a, (hl) xor a, 1 ld (hl), a ld hl, pause_procs jr int_handler int_handler: push af push bc push de int_loop: ld a, (hl) inc hl or (hl) jr z, int_done push hl ld a, (hl) dec hl ld l, (hl) ld h, a call call_int_handler pop hl inc hl jr int_loop int_done: pop de pop bc pop af pop hl ei reti call_int_handler: jp (hl) ;------- ; Beginning of the actual code ;------- filler3: defs (CODE_Start - filler3) start: ; Make room for the atexit() stack ld hl,Stack_Top-64 ld sp,hl ; Clear static memory ld hl,RAM_Start ld de,RAM_Start+1 ld bc,RAM_Length-1 ld (hl),0 ldir call crt0_init_bss ld (exitsp),sp call DefaultInitialiseVDP im 1 ei ; Entry to the user code call _main cleanup: ; ; Deallocate memory which has been allocated here! ; push hl IF !DEFINED_nostreams EXTERN closeall call closeall ENDIF endloop: jr endloop l_dcal: jp (hl) ;--------------------------------- ; VDP Initialization ;--------------------------------- DefaultInitialiseVDP: push hl push bc ld hl,_Data ld b,_End-_Data ld c,$bf otir pop bc pop hl ret DEFC SpriteSet = 0 ; 0 for sprites to use tiles 0-255, 1 for 256+ DEFC NameTableAddress = $3800 ; must be a multiple of $800; usually $3800; fills $700 bytes (unstretched) DEFC SpriteTableAddress = $3f00 ; must be a multiple of $100; usually $3f00; fills $100 bytes _Data: defb @00000100,$80 ; |||||||`- Disable synch ; ||||||`-- Enable extra height modes ; |||||`--- SMS mode instead of SG ; ||||`---- Shift sprites left 8 pixels ; |||`----- Enable line interrupts ; ||`------ Blank leftmost column for scrolling ; |`------- Fix top 2 rows during horizontal scrolling ; `-------- Fix right 8 columns during vertical scrolling defb @10000100,$81 ; |||| |`- Zoomed sprites -> 16x16 pixels ; |||| `-- Doubled sprites -> 2 tiles per sprite, 8x16 ; |||`---- 30 row/240 line mode ; ||`----- 28 row/224 line mode ; |`------ Enable VBlank interrupts ; `------- Enable display defb (NameTableAddress/1024) |@11110001,$82 defb (SpriteTableAddress/128)|@10000001,$85 defb (SpriteSet/4) |@11111011,$86 defb $f|$f0,$87 ; `-------- Border palette colour (sprite palette) defb $00,$88 ; ``------- Horizontal scroll defb $00,$89 ; ``------- Vertical scroll defb $ff,$8a ; ``------- Line interrupt spacing ($ff to disable) _End: INCLUDE "crt0_runtime_selection.asm" defc __crt_org_bss = RAM_Start ; If we were given a model then use it IF DEFINED_CRT_MODEL defc __crt_model = CRT_MODEL ELSE defc __crt_model = 1 ENDIF INCLUDE "crt0_section.asm" SECTION bss_crt fputc_vdp_offs: defw 0 ;Current character pointer aPLibMemory_bits: defb 0 ;apLib support variable aPLibMemory_byte: defb 0 ;apLib support variable aPLibMemory_LWM: defb 0 ;apLib support variable aPLibMemory_R0: defw 0 ;apLib support variable raster_procs: defs 16 ;Raster interrupt handlers pause_procs: defs 16 ;Pause interrupt handlers timer: defw 0 ;This is incremented every time a VBL/HBL interrupt happens _pause_flag: defb 0 ;This alternates between 0 and 1 every time pause is pressed RG0SAV: defb 0 ;keeping track of VDP register values RG1SAV: defb 0 RG2SAV: defb 0 RG3SAV: defb 0 RG4SAV: defb 0 RG5SAV: defb 0 RG6SAV: defb 0 RG7SAV: defb 0
test/test.agda
jonaprieto/agda-prop
13
7940
open import and-example public open import ex-andreas-abel public
OvmfPkg/ResetVector/X64/IntelTdxMetadata.asm
nicklela/edk2
3,012
210
;------------------------------------------------------------------------------ ; @file ; Tdx Virtual Firmware metadata ; ; When host VMM creates a new guest TD, some initial set of TD-private pages ; are added using the TDH.MEM.PAGE.ADD function. These pages typically contain ; Virtual BIOS code and data along with some clear pages for stacks and heap. ; In the meanwhile, some configuration data need be measured by host VMM. ; Tdx Metadata is designed for this purpose to indicate host VMM how to do the ; above tasks. ; ; Tdx Metadata consists of a DESCRIPTOR as the header followed by several ; SECTIONs. Host VMM sets up the memory for TDVF according to these sections. ; ; _Bfv is the example (Bfv refers to the Virtual BIOS code). ; - By DataOffset/RawDataSize host VMM knows about the position of the code ; in the binary image. ; - MemoryAddress/MemoryDataSize indicates the guest physical address/size of ; the Bfv to be loaded. ; - Type field means this section is of BFV. This field is designed for the ; purpose that in some case host VMM may do some additional processing based ; upon the section type. TdHob section is an example. Host VMM pass the ; physical memory information to the guest firmware by writing the data in ; the memory region designated by TdHob section. ; - By design code part of the binary image (Bfv) should be measured by host ; VMM. This is indicated by the Attributes field. ; ; So put all these information together, when a new guest is being created, ; the initial TD-private pages for BFV is added by TDH.MEM.PAGE.ADD function, ; and Bfv is loaded at the guest physical address indicated by MemoryAddress. ; Since the Attributes is TDX_METADATA_ATTRIBUTES_EXTENDMR, Bfv is measured by ; host VMM. ; ; Copyright (c) 2021, Intel Corporation. All rights reserved.<BR> ; SPDX-License-Identifier: BSD-2-Clause-Patent ; ;------------------------------------------------------------------------------ BITS 64 %define TDX_METADATA_SECTION_TYPE_BFV 0 %define TDX_METADATA_SECTION_TYPE_CFV 1 %define TDX_METADATA_SECTION_TYPE_TD_HOB 2 %define TDX_METADATA_SECTION_TYPE_TEMP_MEM 3 %define TDX_METADATA_VERSION 1 %define TDX_METADATA_ATTRIBUTES_EXTENDMR 0x00000001 ALIGN 16 TIMES (15 - ((TdxGuidedStructureEnd - TdxGuidedStructureStart + 15) % 16)) DB 0 TdxGuidedStructureStart: ; ; TDVF meta data ; TdxMetadataGuid: DB 0xf3, 0xf9, 0xea, 0xe9, 0x8e, 0x16, 0xd5, 0x44 DB 0xa8, 0xeb, 0x7f, 0x4d, 0x87, 0x38, 0xf6, 0xae _Descriptor: DB 'T','D','V','F' ; Signature DD TdxGuidedStructureEnd - _Descriptor ; Length DD TDX_METADATA_VERSION ; Version DD (TdxGuidedStructureEnd - _Descriptor - 16)/32 ; Number of sections _Bfv: DD TDX_BFV_RAW_DATA_OFFSET DD TDX_BFV_RAW_DATA_SIZE DQ TDX_BFV_MEMORY_BASE DQ TDX_BFV_MEMORY_SIZE DD TDX_METADATA_SECTION_TYPE_BFV DD TDX_METADATA_ATTRIBUTES_EXTENDMR _Cfv: DD TDX_CFV_RAW_DATA_OFFSET DD TDX_CFV_RAW_DATA_SIZE DQ TDX_CFV_MEMORY_BASE DQ TDX_CFV_MEMORY_SIZE DD TDX_METADATA_SECTION_TYPE_CFV DD 0 _TdxHeapStack: DD 0 DD 0 DQ TDX_HEAP_STACK_BASE DQ TDX_HEAP_STACK_SIZE DD TDX_METADATA_SECTION_TYPE_TEMP_MEM DD 0 _TdxInitMem: DD 0 DD 0 DQ TDX_INIT_MEMORY_BASE DQ TDX_INIT_MEMORY_SIZE DD TDX_METADATA_SECTION_TYPE_TEMP_MEM DD 0 _TdHob: DD 0 DD 0 DQ TDX_HOB_MEMORY_BASE DQ TDX_HOB_MEMORY_SIZE DD TDX_METADATA_SECTION_TYPE_TD_HOB DD 0 _OvmfPageTable: DD 0 DD 0 DQ OVMF_PAGE_TABLE_BASE DQ OVMF_PAGE_TABLE_SIZE DD TDX_METADATA_SECTION_TYPE_TEMP_MEM DD 0 TdxGuidedStructureEnd: ALIGN 16
alloy4fun_models/trainstlt/models/8/CCTGpLnbPjPwXrkvR.als
Kaixi26/org.alloytools.alloy
0
3674
open main pred idCCTGpLnbPjPwXrkvR_prop9 { all t:Train | some tk:Entry | (t.pos not in Entry) implies eventually (t->tk in pos and before no t.pos) } pred __repair { idCCTGpLnbPjPwXrkvR_prop9 } check __repair { idCCTGpLnbPjPwXrkvR_prop9 <=> prop9o }
mapping/src/main/antlr4/com/datastax/oss/dsbulk/generated/mapping/Mapping.g4
msmygit/dsbulk
0
5608
/* * Copyright DataStax, 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. */ /* * This is an ANTLR4 grammar for DSBulk mappings (see schema.mapping setting and MappingInspector). */ grammar Mapping; mapping : simpleEntry ( ',' simpleEntry )* EOF // col1, col2 | indexedEntry ( ',' indexedEntry )* EOF // 0 = col1, 1 = col2, now() = col3 | mappedEntry ( ',' mappedEntry )* EOF // fieldA = col1, fieldB = col2, now() = col3 ; simpleEntry : variableOrFunction ; mappedEntry : regularMappedEntry | inferredMappedEntry ; regularMappedEntry : fieldOrFunction ( ':' | '=' ) variableOrFunction ; inferredMappedEntry : '*' ( ':' | '=' ) '*' | '*' ( ':' | '=' ) '-' variable | '*' ( ':' | '=' ) '[' '-' variable ( ',' '-' variable )* ']' ; indexedEntry : indexOrFunction ( ':' | '=' ) variableOrFunction ; indexOrFunction : index | function ; index : INTEGER ; fieldOrFunction : field | function ; field : UNQUOTED_IDENTIFIER | QUOTED_IDENTIFIER ; variableOrFunction : variable | function ; variable : UNQUOTED_IDENTIFIER | QUOTED_IDENTIFIER ; function : WRITETIME '(' functionArg ')' | qualifiedFunctionName '(' ')' | qualifiedFunctionName '(' functionArgs ')' ; qualifiedFunctionName : ( keyspaceName '.' )? functionName ; keyspaceName : UNQUOTED_IDENTIFIER | QUOTED_IDENTIFIER ; functionName : UNQUOTED_IDENTIFIER | QUOTED_IDENTIFIER ; functionArgs : functionArg ( ',' functionArg )* ; functionArg : INTEGER | FLOAT | BOOLEAN | DURATION | UUID | HEXNUMBER | STRING_LITERAL | ( '-' )? ( K_NAN | K_INFINITY ) | QUOTED_IDENTIFIER | UNQUOTED_IDENTIFIER ; // Case-insensitive alpha characters fragment A: ('a'|'A'); fragment B: ('b'|'B'); fragment C: ('c'|'C'); fragment D: ('d'|'D'); fragment E: ('e'|'E'); fragment F: ('f'|'F'); fragment G: ('g'|'G'); fragment H: ('h'|'H'); fragment I: ('i'|'I'); fragment J: ('j'|'J'); fragment K: ('k'|'K'); fragment L: ('l'|'L'); fragment M: ('m'|'M'); fragment N: ('n'|'N'); fragment O: ('o'|'O'); fragment P: ('p'|'P'); fragment Q: ('q'|'Q'); fragment R: ('r'|'R'); fragment S: ('s'|'S'); fragment T: ('t'|'T'); fragment U: ('u'|'U'); fragment V: ('v'|'V'); fragment W: ('w'|'W'); fragment X: ('x'|'X'); fragment Y: ('y'|'Y'); fragment Z: ('z'|'Z'); fragment DIGIT : '0'..'9' ; fragment LETTER : ('A'..'Z' | 'a'..'z') ; fragment HEX : ('A'..'F' | 'a'..'f' | '0'..'9') ; fragment EXPONENT : E ('+' | '-')? DIGIT+ ; fragment ALPHANUMERIC : ( LETTER | DIGIT | '_' ) ; fragment DURATION_UNIT : Y | M O | W | D | H | M | S | M S | U S | '\u00B5' S | N S ; WRITETIME : W R I T E T I M E ; BOOLEAN : T R U E | F A L S E ; K_NAN : N A N ; K_INFINITY : I N F I N I T Y ; INTEGER : '-'? DIGIT+ ; FLOAT : INTEGER EXPONENT | INTEGER '.' DIGIT* EXPONENT? ; DURATION : '-'? DIGIT+ DURATION_UNIT (DIGIT+ DURATION_UNIT)* | '-'? 'P' (DIGIT+ 'Y')? (DIGIT+ 'M')? (DIGIT+ 'D')? ('T' (DIGIT+ 'H')? (DIGIT+ 'M')? (DIGIT+ 'S')?)? // ISO 8601 "format with designators" | '-'? 'P' DIGIT+ 'W' | '-'? 'P' DIGIT DIGIT DIGIT DIGIT '-' DIGIT DIGIT '-' DIGIT DIGIT 'T' DIGIT DIGIT ':' DIGIT DIGIT ':' DIGIT DIGIT // ISO 8601 "alternative format" ; HEXNUMBER : '0' X HEX* ; UUID : HEX HEX HEX HEX HEX HEX HEX HEX '-' HEX HEX HEX HEX '-' HEX HEX HEX HEX '-' HEX HEX HEX HEX '-' HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX HEX ; STRING_LITERAL : '\'' ( ~'\'' | '\'' '\'' )* '\'' ; UNQUOTED_IDENTIFIER : ALPHANUMERIC ( ALPHANUMERIC )* ; QUOTED_IDENTIFIER : '"' ( ~'"' | '"' '"' )+ '"' ; WS : ( ' ' | '\t' | '\n' | '\r' )+ -> channel(HIDDEN) ;
oeis/173/A173707.asm
neoneye/loda-programs
11
16550
; A173707: Partial sums of floor(n^3/3). ; 0,0,2,11,32,73,145,259,429,672,1005,1448,2024,2756,3670,4795,6160,7797,9741,12027,14693,17780,21329,25384,29992,35200,41058,47619,54936,63065,72065,81995,92917,104896,117997,132288,147840,164724,183014,202787,224120,247093,271789,298291,326685,357060,389505,424112,460976,500192,541858,586075,632944,682569,735057,790515,849053,910784,975821,1044280,1116280,1191940,1271382,1354731,1442112,1533653,1629485,1729739,1834549,1944052,2058385,2177688,2302104,2431776,2566850,2707475,2853800,3005977 lpb $0 mov $2,$0 sub $0,1 seq $2,131476 ; a(n) = floor(n^3/3). add $1,$2 lpe mov $0,$1
test/extended/crc/ux/notification/applescripts/manageNotifications.applescript
georgettica/crc
0
4098
<reponame>georgettica/crc on run{action} -- valid actions on notification -- get latests notification set action_get to "get" -- close all notifications set action_clear to "clear" -- get major version for os set os_version to system attribute "sys1" -- notifications should be visible to perform actions if not is_notificationmenu_visible() then open_notifications(os_version) end if -- handle action if action = action_get then get_notification(os_version) else if action = action_clear then clear_notifications(os_version) else error "not supported action" end if end run -- get the menua bar controller -- 11.X uses controlcenter -- 10.X systemuiserver on get_systemmenu_controller(os_version) if os_version = 11 then return "com.apple.controlcenter" else if os_version = 10 then return "com.apple.systemuiserver" else error "not supported os version" end if end get_systemmenu_controller on open_notifications(os_major_version) set systemmenu_controler to get_systemmenu_controller(os_major_version) tell application "System Events" tell (first application process whose bundle identifier is systemmenu_controler) click menu bar item 1 of menu bar 1 delay 0.25 end tell end tell end open_notifications on is_notificationmenu_visible() try tell application "System Events" tell window 1 of (first application process whose bundle identifier is "com.apple.notificationcenterui") name end tell end tell return true on error errMsg return false end try end is_notificationmenu_visible on get_notification(os_version) if os_version = 11 then return get_notification_11() else if os_version = 10 then return get_notification_10() else error "not supported os version" end if end get_notification on get_notification_11() try tell application "System Events" tell group 1 of UI element 1 of scroll area 1 of window 1 of (first application process whose bundle identifier is "com.apple.notificationcenterui") return value of static text 4 end tell end tell on error return "" end try end get_notification_11 on get_notification_10() try tell application "System Events" tell (first application process whose bundle identifier is "com.apple.notificationcenterui") tell UI Element 1 of row 3 of table 1 of scroll area 1 of window 1 return value of static text 5 end tell end tell end tell on error return "" end try end get_notification_10 -- TODO Ensure only one vindow on notificationcenterui process on clear_notifications(os_version) if os_version = 11 then clear_notifications_11() else if os_version = 10 then clear_notifications_10() else error "not supported os version" end if end clear_notifications on clear_notifications_11() tell application "System Events" set allClosed to false repeat until allClosed try tell group 1 of UI element 1 of scroll area 1 of window 1 of (first application process whose bundle identifier is "com.apple.notificationcenterui") click end tell on error set allClosed to true end try end repeat end tell end clear_notifications_11 on clear_notifications_10() tell application "System Events" try tell (first application process whose bundle identifier is "com.apple.notificationcenterui") tell (first button of UI Element 1 of row 2 of table 1 of scroll area 1 of window 1 whose value of attribute "AXDescription" is "clear") click end tell end tell on error -- no notifications to clear end try end tell end clear_notifications_10
plugin/idea/parser_tests/res/SimpleXML.g4
sheldonrobinson/ingrid
26
1721
grammar SimpleXML; document : comment? element EOF ; comment : '/*' Content '*/' ; element : LT Name '>' ( Content | element )* '</' Name '>' # FullElement | '<' Name '/>' # SelfclosingElement ; Content : [a-zA-Z0-9 ]+ ; Name : NameStartChar NameChar* ; fragment DIGIT : [0-9] | '0'..'9' ; fragment NameChar : NameStartChar | ('-'? | ('_' | '.')+)* | DIGIT ; fragment NameStartChar : [:a-zA-Z] ; LT : '<' ; actionRule : {_input.LT(1).getText().equals("set")}? Name LT ; S : [ \t\r\n] -> skip ;
Cats/Category/Product/Binary.agda
alessio-b-zak/cats
0
15634
<reponame>alessio-b-zak/cats<gh_stars>0 module Cats.Category.Product.Binary where open import Level using (_⊔_) open import Relation.Binary using (Rel ; IsEquivalence ; _Preserves₂_⟶_⟶_) open import Relation.Binary.Product.Pointwise using (×-isEquivalence ; Pointwise) open import Cats.Category.Base open import Cats.Util.Logic.Constructive using (_∧_ ; _,_) module Build {lo la l≈ lo′ la′ l≈′} (C : Category lo la l≈) (D : Category lo′ la′ l≈′) where infixr 9 _∘_ infixr 4 _≈_ private module C = Category C module D = Category D Obj : Set (lo ⊔ lo′) Obj = C.Obj ∧ D.Obj _⇒_ : Obj → Obj → Set (la ⊔ la′) (A , A′) ⇒ (B , B′) = (A C.⇒ B) ∧ (A′ D.⇒ B′) _≈_ : ∀ {A B} → Rel (A ⇒ B) (l≈ ⊔ l≈′) _≈_ = Pointwise C._≈_ D._≈_ id : {A : Obj} → A ⇒ A id = C.id , D.id _∘_ : ∀ {A B C} → B ⇒ C → A ⇒ B → A ⇒ C (f , f′) ∘ (g , g′) = f C.∘ g , f′ D.∘ g′ equiv : ∀ {A B} → IsEquivalence (_≈_ {A} {B}) equiv = ×-isEquivalence C.equiv D.equiv ∘-resp : ∀ {A B C} → _∘_ {A} {B} {C} Preserves₂ _≈_ ⟶ _≈_ ⟶ _≈_ ∘-resp (eq₁ , eq₁′) (eq₂ , eq₂′) = C.∘-resp eq₁ eq₂ , D.∘-resp eq₁′ eq₂′ id-r : ∀ {A B} {f : A ⇒ B} → f ∘ id ≈ f id-r = C.id-r , D.id-r id-l : ∀ {A B} {f : A ⇒ B} → id ∘ f ≈ f id-l = C.id-l , D.id-l assoc : ∀ {A B C D} {f : C ⇒ D} {g : B ⇒ C} {h : A ⇒ B} → (f ∘ g) ∘ h ≈ f ∘ (g ∘ h) assoc = C.assoc , D.assoc _×_ : Category (lo ⊔ lo′) (la ⊔ la′) (l≈ ⊔ l≈′) _×_ = record { Obj = Obj ; _⇒_ = _⇒_ ; _≈_ = _≈_ ; id = id ; _∘_ = _∘_ ; equiv = equiv ; ∘-resp = ∘-resp ; id-r = id-r ; id-l = id-l ; assoc = assoc } open Build public using (_×_)
programs/oeis/132/A132048.asm
karttu/loda
1
89557
; A132048: 3*A007318 - A103451 - A000012. ; 1,1,1,1,5,1,1,8,8,1,1,11,17,11,1,1,14,29,29,14,1,1,17,44,59,44,17,1,1,20,62,104,104,62,20,1,1,23,83,167,209,167,83,23,1,1,26,107,251,377,377,251,107,26,1 cal $0,131065 ; Triangle read by rows: T(n,k) = 6*binomial(n,k) - 5 for 0 <= k <= n. mov $1,2 mod $1,$0 add $1,$0 div $1,2 add $1,1
programs/oeis/085/A085583.asm
jmorken/loda
1
83114
<reponame>jmorken/loda<gh_stars>1-10 ; A085583: Number of (3412,1234)-avoiding involutions in S_n. ; 1,2,4,8,16,29,51,83,131,196,286,402,554,743,981,1269,1621,2038,2536,3116,3796,4577,5479,6503,7671,8984,10466,12118,13966,16011,18281,20777,23529,26538,29836,33424,37336,41573,46171,51131,56491,62252,68454,75098 mov $10,$0 mov $12,$0 add $12,1 lpb $12 clr $0,10 mov $0,$10 sub $12,1 sub $0,$12 mov $7,$0 mov $9,$0 add $9,1 lpb $9 mov $0,$7 sub $9,1 sub $0,$9 mov $4,$0 mov $5,1 lpb $0 sub $0,2 div $0,2 mov $2,$0 sub $0,$0 sub $4,1 mov $5,$2 lpe add $0,$5 pow $0,2 add $4,$0 add $4,1 mul $4,2 mov $1,$4 sub $1,2 div $1,2 add $8,$1 lpe add $11,$8 lpe mov $1,$11
libsrc/_DEVELOPMENT/l/sccz80/crt0_long/l_long_gt.asm
jpoikela/z88dk
640
2510
; Z88 Small C+ Run Time Library ; Long functions ; SECTION code_clib SECTION code_l_sccz80 PUBLIC l_long_gt EXTERN l_long_cmp l_long_gt: ; PRIMARY > SECONDARY? [signed], carry if true ; HL set to 0 (false) or 1 (true) call l_long_cmp jr z, false ccf ret c false: dec l ret
oeis/272/A272027.asm
neoneye/loda-programs
11
88421
<filename>oeis/272/A272027.asm ; A272027: a(n) = 3*sigma(n). ; Submitted by <NAME> ; 3,9,12,21,18,36,24,45,39,54,36,84,42,72,72,93,54,117,60,126,96,108,72,180,93,126,120,168,90,216,96,189,144,162,144,273,114,180,168,270,126,288,132,252,234,216,144,372,171,279,216,294,162,360,216,360,240,270,180,504,186,288,312,381,252,432,204,378,288,432,216,585,222,342,372,420,288,504,240,558,363,378,252,672,324,396,360,540,270,702,336,504,384,432,360,756,294,513,468,651 add $0,1 mov $2,$0 lpb $0 mov $3,$2 dif $3,$0 cmp $3,$2 cmp $3,0 mul $3,$0 sub $0,1 add $1,$3 lpe mov $0,$1 mul $0,3 add $0,3
src/run.agda
xoltar/cedille
0
17381
<reponame>xoltar/cedille open import parse-tree open import string module run (ptr : ParseTreeRec) where open import lib open import datatypes open ParseTreeRec ptr module deriv where data RunElement : 𝕃 char → Set where Id : string → RunElement [] InputChar : (c : char) → RunElement (c :: []) ParseTree : {l : 𝕃 char}{s : string}{pt : ParseTreeT} → isParseTree pt l s → RunElement l infixr 6 _::'_ data Run : (ls : 𝕃 char) → Set where []' : Run [] _::'_ : {lc elc : 𝕃 char} → RunElement elc → Run lc → Run (elc ++ lc) length-run : {lc : 𝕃 char} → Run lc → ℕ length-run []' = 0 length-run (x ::' xs) = suc (length-run xs) RunElement-to-string : {lc : 𝕃 char} → RunElement lc → string RunElement-to-string (Id s) = ("id:" ^ s) RunElement-to-string (InputChar c) = "#" ^ (char-to-string c) RunElement-to-string (ParseTree{pt = pt} ipt) = (ParseTreeToString pt) Run-to-string : {lc : 𝕃 char} → Run lc → string Run-to-string []' = "\n" Run-to-string (e ::' r) = (RunElement-to-string e) ^ " " ^ (Run-to-string r) assocRun : (ls : 𝕃 (𝕃 char))(lc : 𝕃 char) → Run ((concat ls) ++ lc) × ℕ → Run (foldr _++_ lc ls) × ℕ assocRun ls lc (r , n) rewrite concat-foldr ls lc = r , n record rewriteRules : Set where field len-dec-rewrite : {lc : 𝕃 char} → (r : Run lc) → maybe (Run lc × ℕ) --(λ r' → length-run r' < length-run r ≡ tt)) module noderiv where data RunElement : Set where Id : string → RunElement InputChar : (c : char) → RunElement ParseTree : ParseTreeT → RunElement Posinfo : ℕ → RunElement Run : Set Run = 𝕃 RunElement _::'_ : RunElement → Run → Run _::'_ = _::_ []' : Run []' = [] length-run : Run → ℕ length-run = length RunElement-to-string : RunElement → string RunElement-to-string (Id s) = ("id:" ^ s) RunElement-to-string (InputChar c) = "#" ^ (char-to-string c) RunElement-to-string (ParseTree pt) = (ParseTreeToString pt) RunElement-to-string (Posinfo n) = "pos:" ^ ℕ-to-string n Run-to-string : Run → string Run-to-string [] = "\n" Run-to-string (e :: r) = (RunElement-to-string e) ^ " " ^ (Run-to-string r) record rewriteRules : Set where field len-dec-rewrite : Run → maybe (Run × ℕ) empty-string : string empty-string = ""
gdate.applescript
emanuelbesliu/applescripts
0
3962
<filename>gdate.applescript<gh_stars>0 set crrtdate to current date set crrtdate to (current date) as Unicode text set the clipboard to crrtdate
programs/oeis/167/A167471.asm
karttu/loda
1
11430
<filename>programs/oeis/167/A167471.asm ; A167471: Janet periodic table of the elements and structured hexagonal diamond numbers. a(n) = A166911(2n) + A166911(2n+1). ; 16,128,464,1152,2320,4096,6608,9984,14352,19840,26576,34688,44304,55552,68560,83456,100368,119424,140752,164480,190736,219648,251344,285952,323600,364416,408528,456064,507152,561920,620496,683008,749584,820352,895440,974976,1059088,1147904,1241552,1340160,1443856,1552768,1667024,1786752,1912080,2043136,2180048,2322944,2471952,2627200,2788816,2956928,3131664,3313152,3501520,3696896,3899408,4109184,4326352,4551040,4783376,5023488,5271504,5527552,5791760,6064256,6345168,6634624,6932752,7239680,7555536,7880448,8214544,8557952,8910800,9273216,9645328,10027264,10419152,10821120,11233296,11655808,12088784,12532352,12986640,13451776,13927888,14415104,14913552,15423360,15944656,16477568,17022224,17578752,18147280,18727936,19320848,19926144,20543952,21174400,21817616,22473728,23142864,23825152,24520720,25229696,25952208,26688384,27438352,28202240,28980176,29772288,30578704,31399552,32234960,33085056,33949968,34829824,35724752,36634880,37560336,38501248,39457744,40429952,41418000,42422016,43442128,44478464,45531152,46600320,47686096,48788608,49907984,51044352,52197840,53368576,54556688,55762304,56985552,58226560,59485456,60762368,62057424,63370752,64702480,66052736,67421648,68809344,70215952,71641600,73086416,74550528,76034064,77537152,79059920,80602496,82165008,83747584,85350352,86973440,88616976,90281088,91965904,93671552,95398160,97145856,98914768,100705024,102516752,104350080,106205136,108082048,109980944,111901952,113845200,115810816,117798928,119809664,121843152,123899520,125978896,128081408,130207184,132356352,134529040,136725376,138945488,141189504,143457552,145749760,148066256,150407168,152772624,155162752,157577680,160017536,162482448,164972544,167487952,170028800,172595216,175187328,177805264,180449152,183119120,185815296,188537808,191286784,194062352,196864640,199693776,202549888,205433104,208343552,211281360,214246656,217239568,220260224,223308752,226385280,229489936,232622848,235784144,238973952,242192400,245439616,248715728,252020864,255355152,258718720,262111696,265534208,268986384,272468352,275980240,279522176,283094288,286696704,290329552,293992960,297687056,301411968,305167824,308954752,312772880,316622336,320503248,324415744,328359952,332336000 mul $0,4 add $0,4 mov $1,$0 bin $1,3 add $1,$0 div $1,8 mul $1,16
projects/Links_Awakening_gb.windfish/configuration/macros/ifLt.asm
jverkoey/awaken
68
9506
ld a, [#1] cp #2 jr c, #3
problems/NatEquality/Verifier.agda
danr/agder
1
15673
<filename>problems/NatEquality/Verifier.agda module Verifier where open import Definitions open import NatEquality using (_≟_ ; equality-disjoint) check1 : (m n : ℕ) → Equal? m n check1 = _≟_ check2 : (m n : ℕ) → m ≡ n → m ≢ n → ⊥ check2 = equality-disjoint
asm/patches/custom_funcs.asm
zach-cloud/wwrando
0
25352
<filename>asm/patches/custom_funcs.asm<gh_stars>0 .open "sys/main.dol" .org @NextFreeSpace .global init_save_with_tweaks init_save_with_tweaks: ; Function start stuff stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) bl init__10dSv_save_cFv ; To call this custom func we overwrote a call to init__10dSv_save_cFv, so call that now. lis r5, sword_mode@ha addi r5, r5, sword_mode@l lbz r5, 0 (r5) cmpwi r5, 0 ; Start with Sword beq start_with_sword cmpwi r5, 2 ; Swordless beq break_barrier_for_swordless b after_sword_mode_initialization start_with_sword: bl item_func_sword__Fv b after_sword_mode_initialization break_barrier_for_swordless: lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x2C02 ; BARRIER_DOWN bl onEventBit__11dSv_event_cFUs li r4, 0x3B08 ; Another event flag set by the barrier. This one seems to have no effect, but set it anyway just to be safe. bl onEventBit__11dSv_event_cFUs after_sword_mode_initialization: bl item_func_normal_sail__Fv bl item_func_wind_tact__Fv ; Wind Waker bl item_func_tact_song1__Fv ; Wind's Requiem bl item_func_tact_song2__Fv ; Ballad of Gales bl item_func_tact_song6__Fv ; Song of Passing bl item_func_pirates_omamori__Fv ; Pirate's Charm ; Start the player with 30 bombs and arrows. (But not the ability to actually use them.) ; This change is so we can remove the code that sets your current bombs/arrows to 30 when you first get the bombs/bow. ; That code would be bad if the player got a bomb bag/quiver upgrade beforehand, as then that code would reduce the max. lis r3, 0x803C4C71@ha addi r3, r3, 0x803C4C71@l li r4, 30 stb r4, 0 (r3) ; Current arrows stb r4, 1 (r3) ; Current bombs stb r4, 6 (r3) ; Max arrows stb r4, 7 (r3) ; Max bombs ; Start the player with a magic meter so items that use it work correctly. lis r3, 0x803C4C1B@ha addi r3, r3, 0x803C4C1B@l lis r4, starting_magic@ha addi r4, r4, starting_magic@l lbz r4, 0 (r4) ; Load starting magic address into r4, then load byte at address into r4 stb r4, 0 (r3) ; Max magic meter stb r4, 1 (r3) ; Current magic meter ; Give user-selected custom starting items bl init_starting_gear lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x3510 ; HAS_SEEN_INTRO bl onEventBit__11dSv_event_cFUs li r4, 0x2A80 ; HAS_HEROS_CLOTHES (This should be set even if the player wants to wear casual clothes, it's overridden elsewhere) bl onEventBit__11dSv_event_cFUs li r4, 0x0280 ; SAW_TETRA_IN_FOREST_OF_FAIRIES bl onEventBit__11dSv_event_cFUs li r4, 0x0520 ; GOSSIP_STONE_AT_FF1 (Causes Aryll and the pirates to disappear from Outset) bl onEventBit__11dSv_event_cFUs li r4, 0x2E01 ; WATCHED_MEETING_KORL_CUTSCENE (Necessary for Windfall music to play when warping there) bl onEventBit__11dSv_event_cFUs li r4, 0x0F80 ; KORL_UNLOCKED_AND_SPAWN_ON_WINDFALL bl onEventBit__11dSv_event_cFUs li r4, 0x0908 ; SAIL_INTRODUCTION_TEXT_AND_MAP_UNLOCKED bl onEventBit__11dSv_event_cFUs li r4, 0x2A08 ; ENTER_KORL_FOR_THE_FIRST_TIME_AND_SPAWN_ANYWHERE bl onEventBit__11dSv_event_cFUs li r4, 0x0902 ; SAW_DRAGON_ROOST_ISLAND_INTRO bl onEventBit__11dSv_event_cFUs li r4, 0x1F40 ; SAW_QUILL_CUTSCENE_ON_DRI bl onEventBit__11dSv_event_cFUs li r4, 0x0A80 ; KORL_DINS_PEARL_TEXT_ALLOWING_YOU_TO_ENTER_HIM bl onEventBit__11dSv_event_cFUs li r4, 0x0901 ; TRIGGERED_MAP_FISH bl onEventBit__11dSv_event_cFUs li r4, 0x0A20 ; WATCHED_FOREST_HAVEN_INTRO_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x1801 ; WATCHED_DEKU_TREE_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x0A08 ; TALKED_TO_KORL_AFTER_LEAVING_FH bl onEventBit__11dSv_event_cFUs li r4, 0x0808 ; Needed so that exiting the pirate ship takes you to Windfall instead of the tutorial bl onEventBit__11dSv_event_cFUs li r4, 0x1F02 ; TALKED_TO_KORL_AFTER_GETTING_BOMBS bl onEventBit__11dSv_event_cFUs li r4, 0x2F20 ; Talked to KoRL after getting Nayru's Pearl bl onEventBit__11dSv_event_cFUs li r4, 0x3840 ; TALKED_TO_KORL_POST_TOWER_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x2D04 ; MASTER_SWORD_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x3802 ; COLORS_IN_HYRULE bl onEventBit__11dSv_event_cFUs li r4, 0x2D01 ; ANIMATION_SET_2 (Saw cutscene before Helmaroc King where Aryll is rescued) bl onEventBit__11dSv_event_cFUs li r4, 0x2D02 ; TETRA_TO_ZELDA_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x3201 ; KoRL told you about the sages bl onEventBit__11dSv_event_cFUs li r4, 0x3380 ; KoRL told you about the Triforce shards bl onEventBit__11dSv_event_cFUs li r4, 0x1001 ; WATCHED_FIRE_AND_ICE_ARROWS_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x2E04 ; MEDLI_IN_EARTH_TEMPLE_ENTRANCE bl onEventBit__11dSv_event_cFUs li r4, 0x2920 ; MEDLI_IN_EARTH_TEMPLE bl onEventBit__11dSv_event_cFUs li r4, 0x1620 ; Medli is in dungeon mode and can be lifted/called bl onEventBit__11dSv_event_cFUs li r4, 0x3304 ; Saw event where Medli calls to you from within jail bl onEventBit__11dSv_event_cFUs li r4, 0x2910 ; MAKAR_IN_WIND_TEMPLE bl onEventBit__11dSv_event_cFUs li r4, 0x1610 ; Makar is in dungeon mode and can be lifted/called bl onEventBit__11dSv_event_cFUs li r4, 0x3440 ; Saw event where Makar calls to you from within jail bl onEventBit__11dSv_event_cFUs li r4, 0x3A20 ; Fishman and KoRL talked about Forsaken Fortress after you beat Molgera bl onEventBit__11dSv_event_cFUs li r4, 0x2D08 ; HYRULE_3_WARP_CUTSCENE bl onEventBit__11dSv_event_cFUs li r4, 0x3980 ; HYRULE_3_ELECTRICAL_BARRIER_CUTSCENE_1 bl onEventBit__11dSv_event_cFUs li r4, 0x3B02 ; Saw cutscene before Puppet Ganon fight bl onEventBit__11dSv_event_cFUs li r4, 0x4002 ; Saw cutscene before Ganondorf fight bl onEventBit__11dSv_event_cFUs li r4, 0 ori r4, r4, 0xBFFF ; Bitfield of which pigs you brough to Rose during the prologue (Pink, Speckled, Black) lis r5, captured_prologue_pigs_bitfield@ha addi r5, r5, captured_prologue_pigs_bitfield@l lbz r5, 0 (r5) ; Load the randomized value to set the bitfield to bl setEventReg__11dSv_event_cFUsUc lis r3, 0x803C5D60@ha addi r3, r3, 0x803C5D60@l li r4, 0x0310 ; Saw event where Grandma gives you the Hero's Clothes bl onEventBit__11dSv_event_cFUs ; Set four switch bits (0, 1, 3, 7) for several events that happen in the Fairy Woods on Outset. ; Setting these switches causes the Tetra hanging from a tree and rescuing her from Bokoblins events to be marked as finished. ; Also set the switch (9) for having seen the event where you enter the Rito Aerie for the first time and get the Delivery Bag. ; Also set the switch (8) for having unclogged the pond, since that boulder doesn't respond to normal bombs which would be odd. ; Also set the the switch (1E) for having seen the intro to the interior of the Forest Haven, where the camera pans up. ; Also set the the switch (13) for having seen the camera panning towards the treasure chest in Windfall Town Jail. lis r3, 0x803C5114@ha addi r3, r3, 0x803C5114@l lis r4, 0x4008 addi r4, r4, 0x038B stw r4, 4 (r3) ; Set two switch bits (3E and 3F) for having unlocked the song tablets in the Earth and Wind Temple entrances. lis r4, 0xC000 stw r4, 8 (r3) ; Set a switch bit (19) for the event on Greatfish Isle so that the endless night never starts. lis r3, 0x803C4F88@ha ; Sea stage info. addi r3, r3, 0x803C4F88@l lis r4, 0x0200 stw r4, 4 (r3) ; Also set a switch bit (3F) for having seen the Windfall Island intro scene. lis r4, 0x8000 stw r4, 8 (r3) ; Also set a switch bit (58) for having seen the short event when you enter Forsaken Fortress 2 for the first time. ; Also set a switch (0x50) for having seen the event where the camera pans around the Flight Control Platform. ; Also set a switch (0x47) for having hit the switch at Forest Haven to open up the hatch to the Nintendo Gallery. ; Also set a switch (0x5E) for the ladder leading up to the Nintendo Gallery being lowered. lis r4, 0x4101 addi r4, r4, 0x0080 stw r4, 0xC (r3) ; Set a switch (21) for having seen the gossip stone event in DRC where KoRL tells you about giving bait to rats. ; Also set a switch (09) for having seen the event where the camera pans up to Valoo when you go outside. ; Also set a switch (46) for having seen the event where the camera pans around when you first enter DRC. lis r3, 0x803C4FF4@ha ; Dragon Roost Cavern stage info. addi r3, r3, 0x803C4FF4@l li r4, 0x0200 stw r4, 4 (r3) li r4, 0x0002 stw r4, 8 (r3) li r4, 0x0040 stw r4, 0xC (r3) ; Set a switch (36) for having seen the event where the camera pans around the first room when you first enter FW. lis r3, 0x803C5018@ha ; Forbidden Woods stage info. addi r3, r3, 0x803C5018@l lis r4, 0x0040 stw r4, 8 (r3) ; Set a switch (2D) for having seen the event where the camera pans around when you go outside at the top of TotG. ; Also set a switch (63) for having seen the event where the camera pans around the first room when you first enter TotG. lis r3, 0x803C503C@ha ; Tower of the Gods stage info. addi r3, r3, 0x803C503C@l li r4, 0x2000 stw r4, 8 (r3) li r4, 0x0008 stw r4, 0x10 (r3) ; Set a switch (2A) for having seen the gossip stone event where KoRL tells you Medli shows up on the compass. lis r3, 0x803C5060@ha ; Earth Temple stage info. addi r3, r3, 0x803C5060@l li r4, 0x0400 stw r4, 8 (r3) ; Set a switch (12) for having seen the camera moving around event when you first enter Hyrule. ; Also set a switch (6) for having completed the Triforce pushable blocks puzzle. lis r3, 0x803C50CC@ha ; Hyrule stage info. addi r3, r3, 0x803C50CC@l lis r4, 0x0004 addi r4, r4, 0x0040 stw r4, 4 (r3) ; Set a switch (0D) for having seen the camera panning around when you first enter Ganon's Tower. ; Also set a switch (1C) for having seen the camera panning around looking at the 4 lights in the room where you can drop down to the maze. ; Also set a switch (1D) for having seen the camera panning around looking at the 4 boomerang switches in the room with the warp up to Forsaken Fortress. ; Also set a switch (1E) for having seen the cutscene before the Puppet Ganon fight. ; Also set a switch (12) for having seen the cutscene after the Puppet Ganon fight. ; Also set a switch (1F) for having seen the cutscene before the Ganondorf fight. lis r3, 0x803C50A8@ha ; Ganon's Tower stage info. addi r3, r3, 0x803C50A8@l lis r4, 0xF004 addi r4, r4, 0x2000 stw r4, 4 (r3) li r3, 3 ; DRC stage ID li r4, 5 ; Seen the boss intro bit index bl generic_on_dungeon_bit li r3, 4 ; FW stage ID li r4, 5 ; Seen the boss intro bit index bl generic_on_dungeon_bit li r3, 5 ; TotG stage ID li r4, 5 ; Seen the boss intro bit index bl generic_on_dungeon_bit li r3, 6 ; ET stage ID li r4, 5 ; Seen the boss intro bit index bl generic_on_dungeon_bit li r3, 7 ; WT stage ID li r4, 5 ; Seen the boss intro bit index bl generic_on_dungeon_bit ; Make the game think the player has previously owned every type of spoil and bait so they don't get the item get animation the first time they pick each type up. lis r3, 0x803C4C9C@ha addi r3, r3, 0x803C4C9C@l li r4, 0xFF stb r4, 0 (r3) ; 803C4C9C, bitfield of what spoils bag items you've ever owned stb r4, 1 (r3) ; 803C4C9D, bitfield of what bait bag items you've ever owned ; Give the player the number of Triforce Shards they want to start with. lis r5, num_triforce_shards_to_start_with@ha addi r5, r5, num_triforce_shards_to_start_with@l lbz r5, 0 (r5) ; Load number of Triforce Shards to start with lis r3, 0x803C4CC6@ha ; Bitfield of Triforce Shards the player owns addi r3, r3, 0x803C4CC6@l ; Convert the number of shards to a bitfield with that many bits set. ; e.g. For 5 shards, ((1 << 5) - 1) results in 0x1F (binary 00011111). li r0, 1 slw r4, r0, r5 subi r4, r4, 1 stb r4, 0 (r3) ; Store the bitfield of shards back ; If the number of starting shards is 8, also set the event flag for seeing the Triforce refuse together. cmpwi r5, 8 blt after_starting_triforce_shards lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x3D04 ; Saw the Triforce refuse bl onEventBit__11dSv_event_cFUs after_starting_triforce_shards: lis r5, skip_rematch_bosses@ha addi r5, r5, skip_rematch_bosses@l lbz r5, 0 (r5) ; Load bool of whether rematch bosses should be skipped cmpwi r5, 1 bne after_skipping_rematch_bosses lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x3904 ; Recollection Gohma defeated bl onEventBit__11dSv_event_cFUs li r4, 0x3902 ; Recollection Kalle Demos defeated bl onEventBit__11dSv_event_cFUs li r4, 0x3901 ; Recollection Jalhalla defeated bl onEventBit__11dSv_event_cFUs li r4, 0x3A80 ; Recollection Molgera defeated bl onEventBit__11dSv_event_cFUs after_skipping_rematch_bosses: ; Function end stuff lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr ; This function reads from an array of user-selected starting item IDs and adds them to your inventory. .global init_starting_gear init_starting_gear: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) stw r31, 0xC (sp) lis r31, starting_gear@ha addi r31, r31, starting_gear@l lbz r3, 0 (r31) b init_starting_gear_check_continue_loop init_starting_gear_begin_loop: bl convert_progressive_item_id bl execItemGet__FUc lbzu r3, 1(r31) init_starting_gear_check_continue_loop: cmplwi r3, 255 bne+ init_starting_gear_begin_loop end_init_starting_gear: lwz r31, 0xC (sp) lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global num_triforce_shards_to_start_with num_triforce_shards_to_start_with: .byte 0 ; By default start with no Triforce Shards .global should_start_with_heros_clothes should_start_with_heros_clothes: .byte 1 ; By default start with the Hero's Clothes .global sword_mode sword_mode: .byte 0 ; By default Start with Sword .global skip_rematch_bosses skip_rematch_bosses: .byte 1 ; By default skip them .global starting_gear starting_gear: .space 47, 0xFF ; Allocate space for up to 47 additional items (when changing this also update the constant in tweaks.py) .byte 0xFF .align 1 ; Align to the next 2 bytes .global starting_quarter_hearts starting_quarter_hearts: .short 12 ; By default start with 12 quarter hearts (3 heart containers) .global starting_magic starting_magic: .byte 16 ; By default start with 16 units of magic (small magic meter) .global captured_prologue_pigs_bitfield captured_prologue_pigs_bitfield: .byte 0x04 ; By default, only have the black pig captured so that it becomes the big pig .align 2 ; Align to the next 4 bytes .global convert_progressive_item_id convert_progressive_item_id: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) cmpwi r3, 0x38 beq convert_progressive_sword_id cmpwi r3, 0x39 beq convert_progressive_sword_id cmpwi r3, 0x3A beq convert_progressive_sword_id cmpwi r3, 0x3D beq convert_progressive_sword_id cmpwi r3, 0x3E beq convert_progressive_sword_id cmpwi r3, 0x3B beq convert_progressive_shield_id cmpwi r3, 0x3C beq convert_progressive_shield_id cmpwi r3, 0x27 beq convert_progressive_bow_id cmpwi r3, 0x35 beq convert_progressive_bow_id cmpwi r3, 0x36 beq convert_progressive_bow_id cmpwi r3, 0xAB beq convert_progressive_wallet_id cmpwi r3, 0xAC beq convert_progressive_wallet_id cmpwi r3, 0xAD beq convert_progressive_bomb_bag_id cmpwi r3, 0xAE beq convert_progressive_bomb_bag_id cmpwi r3, 0xAF beq convert_progressive_quiver_id cmpwi r3, 0xB0 beq convert_progressive_quiver_id cmpwi r3, 0x23 beq convert_progressive_picto_box_id cmpwi r3, 0x26 beq convert_progressive_picto_box_id b convert_progressive_item_id_func_end convert_progressive_sword_id: lis r3, 0x803C4CBC@ha addi r3, r3, 0x803C4CBC@l lbz r4, 0 (r3) ; Bitfield of swords you own cmpwi r4, 0 beq convert_progressive_sword_id_to_normal_sword cmpwi r4, 1 beq convert_progressive_sword_id_to_powerless_master_sword cmpwi r4, 3 beq convert_progressive_sword_id_to_half_power_master_sword cmpwi r4, 7 beq convert_progressive_sword_id_to_full_power_master_sword li r3, 0x38 ; Invalid sword state; this shouldn't happen so just return the base sword ID b convert_progressive_item_id_func_end convert_progressive_sword_id_to_normal_sword: li r3, 0x38 b convert_progressive_item_id_func_end convert_progressive_sword_id_to_powerless_master_sword: li r3, 0x39 b convert_progressive_item_id_func_end convert_progressive_sword_id_to_half_power_master_sword: li r3, 0x3A b convert_progressive_item_id_func_end convert_progressive_sword_id_to_full_power_master_sword: li r3, 0x3E b convert_progressive_item_id_func_end convert_progressive_shield_id: lis r3, 0x803C4CBD@ha addi r3, r3, 0x803C4CBD@l lbz r4, 0 (r3) ; Bitfield of shields you own cmpwi r4, 0 beq convert_progressive_shield_id_to_heros_shield cmpwi r4, 1 beq convert_progressive_shield_id_to_mirror_shield li r3, 0x3B ; Invalid shield state; this shouldn't happen so just return the base shield ID b convert_progressive_item_id_func_end convert_progressive_shield_id_to_heros_shield: li r3, 0x3B b convert_progressive_item_id_func_end convert_progressive_shield_id_to_mirror_shield: li r3, 0x3C b convert_progressive_item_id_func_end convert_progressive_bow_id: lis r3, 0x803C4C65@ha addi r3, r3, 0x803C4C65@l lbz r4, 0 (r3) ; Bitfield of arrow types you own cmpwi r4, 0 beq convert_progressive_bow_id_to_heros_bow cmpwi r4, 1 beq convert_progressive_bow_id_to_fire_and_ice_arrows cmpwi r4, 3 beq convert_progressive_bow_id_to_light_arrows li r3, 0x27 ; Invalid bow state; this shouldn't happen so just return the base bow ID b convert_progressive_item_id_func_end convert_progressive_bow_id_to_heros_bow: li r3, 0x27 b convert_progressive_item_id_func_end convert_progressive_bow_id_to_fire_and_ice_arrows: li r3, 0x35 b convert_progressive_item_id_func_end convert_progressive_bow_id_to_light_arrows: li r3, 0x36 b convert_progressive_item_id_func_end convert_progressive_wallet_id: lis r3, 0x803C4C1A@ha addi r3, r3, 0x803C4C1A@l lbz r4, 0 (r3) ; Which wallet you have cmpwi r4, 0 beq convert_progressive_wallet_id_to_1000_rupee_wallet cmpwi r4, 1 beq convert_progressive_wallet_id_to_5000_rupee_wallet li r3, 0xAB ; Invalid wallet state; this shouldn't happen so just return the base wallet ID b convert_progressive_item_id_func_end convert_progressive_wallet_id_to_1000_rupee_wallet: li r3, 0xAB b convert_progressive_item_id_func_end convert_progressive_wallet_id_to_5000_rupee_wallet: li r3, 0xAC b convert_progressive_item_id_func_end convert_progressive_bomb_bag_id: lis r3, 0x803C4C72@ha addi r3, r3, 0x803C4C72@l lbz r4, 6 (r3) ; Max number of bombs the player can currently hold cmpwi r4, 30 beq convert_progressive_bomb_bag_id_to_60_bomb_bomb_bag cmpwi r4, 60 beq convert_progressive_bomb_bag_id_to_99_bomb_bomb_bag li r3, 0xAD ; Invalid bomb bag state; this shouldn't happen so just return the base bomb bag ID b convert_progressive_item_id_func_end convert_progressive_bomb_bag_id_to_60_bomb_bomb_bag: li r3, 0xAD b convert_progressive_item_id_func_end convert_progressive_bomb_bag_id_to_99_bomb_bomb_bag: li r3, 0xAE b convert_progressive_item_id_func_end convert_progressive_quiver_id: lis r3, 0x803C4C71@ha addi r3, r3, 0x803C4C71@l lbz r4, 6 (r3) ; Max number of arrows the player can currently hold cmpwi r4, 30 beq convert_progressive_quiver_id_to_60_arrow_quiver cmpwi r4, 60 beq convert_progressive_quiver_id_to_99_arrow_quiver li r3, 0xAF ; Invalid quiver state; this shouldn't happen so just return the base quiver ID b convert_progressive_item_id_func_end convert_progressive_quiver_id_to_60_arrow_quiver: li r3, 0xAF b convert_progressive_item_id_func_end convert_progressive_quiver_id_to_99_arrow_quiver: li r3, 0xB0 b convert_progressive_item_id_func_end convert_progressive_picto_box_id: lis r3, 0x803C4C61@ha addi r3, r3, 0x803C4C61@l lbz r4, 0 (r3) ; Bitfield of picto boxes you own cmpwi r4, 0 beq convert_progressive_picto_box_id_to_normal_picto_box cmpwi r4, 1 beq convert_progressive_picto_box_id_to_deluxe_picto_box li r3, 0x23 ; Invalid bomb bag state; this shouldn't happen so just return the base bomb bag ID b convert_progressive_item_id_func_end convert_progressive_picto_box_id_to_normal_picto_box: li r3, 0x23 b convert_progressive_item_id_func_end convert_progressive_picto_box_id_to_deluxe_picto_box: li r3, 0x26 b convert_progressive_item_id_func_end convert_progressive_item_id_func_end: lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global progressive_sword_item_func progressive_sword_item_func: ; Function start stuff stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C4CBC@ha addi r3, r3, 0x803C4CBC@l lbz r4, 0 (r3) ; Bitfield of swords you own cmpwi r4, 0 beq get_normal_sword cmpwi r4, 1 beq get_powerless_master_sword cmpwi r4, 3 beq get_half_power_master_sword cmpwi r4, 7 beq get_full_power_master_sword b sword_func_end get_normal_sword: bl item_func_sword__Fv b sword_func_end get_powerless_master_sword: bl item_func_master_sword__Fv b sword_func_end get_half_power_master_sword: bl item_func_lv3_sword__Fv b sword_func_end get_full_power_master_sword: bl item_func_master_sword_ex__Fv sword_func_end: ; Function end stuff lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global progressive_shield_item_func progressive_shield_item_func: ; Function start stuff stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C4CBD@ha addi r3, r3, 0x803C4CBD@l lbz r4, 0 (r3) ; Bitfield of shields you own cmpwi r4, 0 beq get_heros_shield cmpwi r4, 1 beq get_mirror_shield b shield_func_end get_heros_shield: bl item_func_shield__Fv b shield_func_end get_mirror_shield: bl item_func_mirror_shield__Fv shield_func_end: ; Function end stuff lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global progressive_bow_func progressive_bow_func: ; Function start stuff stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C4C65@ha addi r3, r3, 0x803C4C65@l lbz r4, 0 (r3) ; Bitfield of arrow types you own cmpwi r4, 0 beq get_heros_bow cmpwi r4, 1 beq get_fire_and_ice_arrows cmpwi r4, 3 beq get_light_arrows b bow_func_end get_heros_bow: bl item_func_bow__Fv b bow_func_end get_fire_and_ice_arrows: bl item_func_magic_arrow__Fv b bow_func_end get_light_arrows: bl item_func_light_arrow__Fv bow_func_end: ; Function end stuff lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global progressive_wallet_item_func progressive_wallet_item_func: lis r3, 0x803C4C1A@ha addi r3, r3, 0x803C4C1A@l lbz r4, 0 (r3) ; Which wallet you have cmpwi r4, 0 beq get_1000_rupee_wallet cmpwi r4, 1 beq get_5000_rupee_wallet b wallet_func_end get_1000_rupee_wallet: li r4, 1 stb r4, 0 (r3) ; Which wallet you have b wallet_func_end get_5000_rupee_wallet: li r4, 2 stb r4, 0 (r3) ; Which wallet you have wallet_func_end: blr .global progressive_bomb_bag_item_func progressive_bomb_bag_item_func: lis r3, 0x803C4C72@ha addi r3, r3, 0x803C4C72@l lbz r4, 6 (r3) ; Max number of bombs the player can currently hold cmpwi r4, 30 beq get_60_bomb_bomb_bag cmpwi r4, 60 beq get_99_bomb_bomb_bag b bomb_bag_func_end get_60_bomb_bomb_bag: li r4, 60 stb r4, 0 (r3) ; Current num bombs stb r4, 6 (r3) ; Max num bombs b bomb_bag_func_end get_99_bomb_bomb_bag: li r4, 99 stb r4, 0 (r3) ; Current num bombs stb r4, 6 (r3) ; Max num bombs bomb_bag_func_end: blr .global progressive_quiver_item_func progressive_quiver_item_func: lis r3, 0x803C4C71@ha addi r3, r3, 0x803C4C71@l lbz r4, 6 (r3) ; Max number of arrows the player can currently hold cmpwi r4, 30 beq get_60_arrow_quiver cmpwi r4, 60 beq get_99_arrow_quiver b quiver_func_end get_60_arrow_quiver: li r4, 60 stb r4, 0 (r3) ; Current num arrows stb r4, 6 (r3) ; Max num arrows b quiver_func_end get_99_arrow_quiver: li r4, 99 stb r4, 0 (r3) ; Current num arrows stb r4, 6 (r3) ; Max num arrows quiver_func_end: blr .global progressive_picto_box_item_func progressive_picto_box_item_func: ; Function start stuff stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C4C61@ha addi r3, r3, 0x803C4C61@l lbz r4, 0 (r3) ; Bitfield of picto boxes you own cmpwi r4, 0 beq get_normal_picto_box cmpwi r4, 1 beq get_deluxe_picto_box b picto_box_func_end get_normal_picto_box: bl item_func_camera__Fv b picto_box_func_end get_deluxe_picto_box: bl item_func_camera2__Fv picto_box_func_end: ; Function end stuff lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global hurricane_spin_item_func hurricane_spin_item_func: ; Function start stuff stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) ; Set event bit 6901 (bit 01 of byte 803C5295). ; This bit was unused in the base game, but we repurpose it to keep track of whether you have Hurricane Spin separately from whether you've seen the event where Orca would normally give you Hurricane Spin. lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x6901 ; Unused event bit bl onEventBit__11dSv_event_cFUs ; Function end stuff lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr ; This function takes the same arguments as fastCreateItem, but it loads in any unloaded models without crashing like createItem. ; This is so we can replace any randomized item spawns that use fastCreateItem with a call to this new function instead. ; Note: One part of fastCreateItem that this custom function cannot emulate is giving the item a starting velocity. ; fastCreateItem can do that because the item actor is created instantly, but when slow-loading the model for the item, the actor is created asynchronously later on, so there's no way for us to store the velocity to it. ; The proper way to store a velocity to a slow-loaded item is for the object that created this item to check if the item is loaded every frame, and once it is it then stores the velocity to it. But this would be too complex to implement via ASM. ; Another note: This function cannot accurately emulate the return value of fastCreateItem, which is a pointer to the created actor, because as mentioned above, the actor doesn't exist yet at the moment after createItem is called. Therefore, it has to return the item actor's unique ID instead, like createItem does. This means that any code calling this custom function will need to have any code after the call that handles the return value changed or else it will crash because it will treat the actor unique ID as a pointer. .global custom_createItem custom_createItem: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) ; If the item ID is FF, no item will be spawned. ; In order to avoid issues we need to return -1. ; Also don't bother even trying to spawn the item - it wouldn't do anything. cmpwi r4, 0xFF beq custom_createItem_invalid_item_id ; Create the item by calling createItem, which will load the item's model if necessary. mr r9, r5 mr r5, r8 mr r8, r6 mr r6, r9 mr r10, r7 li r7, 3 ; Don't fade out li r9, 5 ; Item action, how it behaves. 5 causes it to make a ding sound so that it's more obvious. bl fopAcM_createItem__FP4cXyziiiiP5csXyziP4cXyz ; Return the actor's unique ID that createItem returned. b custom_createItem_func_end custom_createItem_invalid_item_id: li r3, -1 ; Return -1 to indicate no actor was created. custom_createItem_func_end: lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global generic_on_dungeon_bit generic_on_dungeon_bit: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) mr r5, r3 ; Argument r3 to this func is the stage ID of the dungeon to add this item for mr r6, r4 ; Argument r4 to this func is the bit index to set lis r3, 0x803C53A4@ha ; This value is the stage ID of the current stage addi r3, r3, 0x803C53A4@l lbz r4, 0 (r3) cmpw r4, r5 ; Check if we're currently in the right dungeon for this key beq generic_on_dungeon_bit_in_correct_dungeon ; Not in the correct dungeon for this dungeon bit. We need to set the bit for the correct dungeon's stage info. lis r3, 0x803C4F88@ha ; List of all stage info addi r3, r3, 0x803C4F88@l mulli r4, r5, 0x24 ; Use stage ID of the dungeon as the index, each entry in the list is 0x24 bytes long add r3, r3, r4 b generic_on_dungeon_bit_func_end generic_on_dungeon_bit_in_correct_dungeon: ; In the correct dungeon for this dungeon bit. lis r3, 0x803C5380@ha ; Currently loaded stage info addi r3, r3, 0x803C5380@l generic_on_dungeon_bit_func_end: ; Now call onDungeonBit with argument r3 being the stage info that was determined above. mr r4, r6 ; Argument r4 is the bit index bl onDungeonItem__12dSv_memBit_cFi lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global generic_small_key_item_get_func generic_small_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) mr r5, r3 ; Argument r3 is the stage ID of the dungeon to add this item for lis r3, 0x803C53A4@ha ; This value is the stage ID of the current stage addi r3, r3, 0x803C53A4@l lbz r4, 0 (r3) cmpw r4, r5 ; Check if we're currently in the right dungeon for this key bne generic_small_key_item_get_func_not_in_correct_dungeon ; Next we need to check if the current stage has the "is dungeon" bit set in its StagInfo. ; If it doesn't (like if we're in a boss room) then we still can't use the normal key function, since the key counter in the UI is disabled, and that's what adds to your actual number of keys when we use the normal key function. lis r3, 0x803C4C08@ha addi r3, r3, 0x803C4C08@l lwzu r12, 0x5150 (r3) lwz r12, 0xB0 (r12) mtctr r12 bctrl lbz r0, 9 (r3) ; Read the byte containing the stage ID+is dungeon bit rlwinm. r0, r0, 0, 31, 31 ; Extract the is dungeon bit beq generic_small_key_item_get_func_in_non_dungeon_room_of_correct_dungeon ; If both the stage ID and the is dungeon bit are correct, we can call the normal small key function. b generic_small_key_item_get_func_in_correct_dungeon generic_small_key_item_get_func_not_in_correct_dungeon: ; Not in the correct dungeon for this small key. ; We need to bypass the normal small key adding method. ; Instead we add directly to the small key count for the correct dungeon's stage info. lis r3, 0x803C4F88@ha ; List of all stage info addi r3, r3, 0x803C4F88@l mulli r4, r5, 0x24 ; Use stage ID of the dungeon as the index, each entry in the list is 0x24 bytes long add r3, r3, r4 lbz r4, 0x20 (r3) ; Current number of keys for the correct dungeon addi r4, r4, 1 stb r4, 0x20 (r3) ; Current number of keys for the correct dungeon b generic_small_key_item_get_func_end generic_small_key_item_get_func_in_non_dungeon_room_of_correct_dungeon: lis r3, 0x803C5380@ha ; Currently loaded stage info addi r3, r3, 0x803C5380@l lbz r4, 0x20 (r3) ; Current number of keys for the current dungeon addi r4, r4, 1 stb r4, 0x20 (r3) ; Current number of keys for the current dungeon b generic_small_key_item_get_func_end generic_small_key_item_get_func_in_correct_dungeon: ; In the correct dungeon for this small key. ; Simply call the normal small key func, as it will work correctly in this case. bl item_func_small_key__Fv generic_small_key_item_get_func_end: lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global drc_small_key_item_get_func drc_small_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 3 ; DRC stage ID bl generic_small_key_item_get_func lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global fw_small_key_item_get_func fw_small_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 4 ; FW stage ID bl generic_small_key_item_get_func lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global totg_small_key_item_get_func totg_small_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 5 ; TotG stage ID bl generic_small_key_item_get_func lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global et_small_key_item_get_func et_small_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 6 ; ET stage ID bl generic_small_key_item_get_func lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global wt_small_key_item_get_func wt_small_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 7 ; WT stage ID bl generic_small_key_item_get_func lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global drc_big_key_item_get_func drc_big_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 3 ; DRC stage ID li r4, 2 ; Big key bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global fw_big_key_item_get_func fw_big_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 4 ; FW stage ID li r4, 2 ; Big key bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global totg_big_key_item_get_func totg_big_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 5 ; TotG stage ID li r4, 2 ; Big key bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global et_big_key_item_get_func et_big_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 6 ; ET stage ID li r4, 2 ; Big key bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global wt_big_key_item_get_func wt_big_key_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 7 ; WT stage ID li r4, 2 ; Big key bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global drc_dungeon_map_item_get_func drc_dungeon_map_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 3 ; DRC stage ID li r4, 0 ; Dungeon map bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global fw_dungeon_map_item_get_func fw_dungeon_map_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 4 ; FW stage ID li r4, 0 ; Dungeon map bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global totg_dungeon_map_item_get_func totg_dungeon_map_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 5 ; TotG stage ID li r4, 0 ; Dungeon map bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global ff_dungeon_map_item_get_func ff_dungeon_map_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 2 ; FF stage ID li r4, 0 ; Dungeon map bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global et_dungeon_map_item_get_func et_dungeon_map_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 6 ; ET stage ID li r4, 0 ; Dungeon map bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global wt_dungeon_map_item_get_func wt_dungeon_map_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 7 ; WT stage ID li r4, 0 ; Dungeon map bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global drc_compass_item_get_func drc_compass_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 3 ; DRC stage ID li r4, 1 ; Compass bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global fw_compass_item_get_func fw_compass_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 4 ; FW stage ID li r4, 1 ; Compass bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global totg_compass_item_get_func totg_compass_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 5 ; TotG stage ID li r4, 1 ; Compass bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global ff_compass_item_get_func ff_compass_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 2 ; FF stage ID li r4, 1 ; Compass bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global et_compass_item_get_func et_compass_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 6 ; ET stage ID li r4, 1 ; Compass bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global wt_compass_item_get_func wt_compass_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) li r3, 7 ; WT stage ID li r4, 1 ; Compass bit index bl generic_on_dungeon_bit lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global dragon_tingle_statue_item_get_func dragon_tingle_statue_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x6A04 ; Unused event bit we use for Dragon Tingle Statue bl onEventBit__11dSv_event_cFUs lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global forbidden_tingle_statue_item_get_func forbidden_tingle_statue_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x6A08 ; Unused event bit we use for Forbidden Tingle Statue bl onEventBit__11dSv_event_cFUs lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global goddess_tingle_statue_item_get_func goddess_tingle_statue_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x6A10 ; Unused event bit we use for Goddess Tingle Statue bl onEventBit__11dSv_event_cFUs lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global earth_tingle_statue_item_get_func earth_tingle_statue_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x6A20 ; Unused event bit we use for Earth Tingle Statue bl onEventBit__11dSv_event_cFUs lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .global wind_tingle_statue_item_get_func wind_tingle_statue_item_get_func: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l li r4, 0x6A40 ; Unused event bit we use for Wind Tingle Statue bl onEventBit__11dSv_event_cFUs lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr ; This function checks if you own a certain Tingle Statue. ; It's designed to replace the original calls to dComIfGs_isStageTbox__Fii, so it takes the same arguments as that function. ; Argument r3 - the stage ID of the stage info to check a chest in. ; Argument r4 - the opened flag index of the chest to check. ; This function, instead of checking if certain chests are open, checks if the unused event bits we use for certain Tingle Statues have been set. .global check_tingle_statue_owned check_tingle_statue_owned: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) cmpwi r4, 0xF ; The opened flag index (argument r4) for tingle statue chests should always be 0xF. bne check_tingle_statue_owned_invalid ; The stage ID (argument r3) determines which dungeon it's checking. cmpwi r3, 3 beq check_dragon_tingle_statue_owned cmpwi r3, 4 beq check_forbidden_tingle_statue_owned cmpwi r3, 5 beq check_goddess_tingle_statue_owned cmpwi r3, 6 beq check_earth_tingle_statue_owned cmpwi r3, 7 beq check_wind_tingle_statue_owned b check_tingle_statue_owned_invalid check_dragon_tingle_statue_owned: li r4, 0x6A04 ; Unused event bit b check_tingle_statue_owned_event_bit check_forbidden_tingle_statue_owned: li r4, 0x6A08 ; Unused event bit b check_tingle_statue_owned_event_bit check_goddess_tingle_statue_owned: li r4, 0x6A10 ; Unused event bit b check_tingle_statue_owned_event_bit check_earth_tingle_statue_owned: li r4, 0x6A20 ; Unused event bit b check_tingle_statue_owned_event_bit check_wind_tingle_statue_owned: li r4, 0x6A40 ; Unused event bit check_tingle_statue_owned_event_bit: lis r3, 0x803C522C@ha addi r3, r3, 0x803C522C@l bl isEventBit__11dSv_event_cFUs b check_tingle_statue_owned_end check_tingle_statue_owned_invalid: ; If the function call was somehow invalid, return false. li r3, 0 check_tingle_statue_owned_end: lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr ; Custom function to check if a treasure chest open flag in the save file is set. ; This function has the benefit of not crashing like isStageTbox when used with test room. ; The downside is that this function doesn't work right if the player hasn't changed stages in between opening the chest and this check happening, so it should only be used when that is impossible. ; r3 - The stage info ID ; r4 - The treasure chest open flag index to check .global custom_isTbox_for_unloaded_stage_save_info custom_isTbox_for_unloaded_stage_save_info: stwu sp, -0x10 (sp) mflr r0 stw r0, 0x14 (sp) mulli r0, r3, 0x24 ; Use stage info ID as the index, each entry in the list is 0x24 bytes long lis r3, 0x803C4F88@ha ; List of all stage info addi r3, r3, 0x803C4F88@l add r3, r3, r0 bl isTbox__12dSv_memBit_cFi lwz r0, 0x14 (sp) mtlr r0 addi sp, sp, 0x10 blr .close
programs/oeis/198/A198310.asm
neoneye/loda
22
105383
; A198310: Moore lower bound on the order of a (10,g)-cage. ; 11,20,101,182,911,1640,8201,14762,73811,132860,664301,1195742,5978711,10761680,53808401,96855122,484275611,871696100,4358480501,7845264902,39226324511,70607384120,353036920601,635466457082,3177332285411 lpb $0 mov $2,$0 sub $0,1 add $2,$1 gcd $2,2 add $1,$2 mul $1,3 lpe div $1,2 mul $1,9 add $1,11 mov $0,$1
src/SecondOrder/Mslot.agda
andrejbauer/formal
1
1805
<reponame>andrejbauer/formal {-# OPTIONS --allow-unsolved-metas #-} open import Agda.Primitive using (lzero; lsuc; _⊔_) open import Relation.Binary.PropositionalEquality using (_≡_; refl; sym; trans; cong; subst; setoid) open import Data.Product using (_×_; Σ; _,_; proj₁; proj₂; zip; map; <_,_>; swap) import Function.Equality open import Relation.Binary using (Setoid) import Relation.Binary.Reasoning.Setoid as SetoidR import Categories.Category import Categories.Functor import Categories.Category.Instance.Setoids import Categories.Monad.Relative import Categories.Category.Equivalence import Categories.Category.Cocartesian import Categories.Category.Construction.Functors import Categories.Category.Product import Categories.NaturalTransformation import Categories.NaturalTransformation.NaturalIsomorphism import SecondOrder.Arity import SecondOrder.Signature import SecondOrder.Metavariable import SecondOrder.VRenaming import SecondOrder.MRenaming import SecondOrder.Term import SecondOrder.Substitution import SecondOrder.RelativeMonadMorphism import SecondOrder.Instantiation import SecondOrder.IndexedCategory import SecondOrder.RelativeKleisli module SecondOrder.Mslot {ℓ} {𝔸 : SecondOrder.Arity.Arity} (Σ : SecondOrder.Signature.Signature ℓ 𝔸) where open SecondOrder.Signature.Signature Σ open SecondOrder.Metavariable Σ open SecondOrder.Term Σ open SecondOrder.VRenaming Σ open SecondOrder.MRenaming Σ -- open SecondOrder.Substitution Σ -- open import SecondOrder.RelativeMonadMorphism -- open SecondOrder.Instantiation open Categories.Category open Categories.Functor using (Functor) open Categories.NaturalTransformation renaming (id to idNt) open Categories.NaturalTransformation.NaturalIsomorphism renaming (refl to reflNt; sym to symNt; trans to transNt) open Categories.Category.Construction.Functors open Categories.Category.Instance.Setoids open Categories.Category.Product open Function.Equality using () renaming (setoid to Π-setoid) open SecondOrder.IndexedCategory -- open import SecondOrder.RelativeKleisli MTele = MContexts VTele = VContexts -- the codomain category of the MSlots functor. It should be equivalent to the -- functor category [ MTele x VTele , < Setoid >ₛₒᵣₜ ] -- objects are functors, which are really pairs of functions, one on objects -- one on morphisms -- morphisms in this category are natural transformations module _ where open Category open NaturalTransformation open Function.Equality renaming (_∘_ to _∙_) ∘ᵥ-resp-≈ : ∀ {o l e o' l' e'} {𝒞 : Category o l e} {𝒟 : Category o' l' e'} {F G H : Functor 𝒞 𝒟} {α β : NaturalTransformation F G} {γ δ : NaturalTransformation G H} → (∀ {X : Obj 𝒞} → (𝒟 Category.≈ (η α X)) (η β X)) → (∀ {X : Obj 𝒞} → (𝒟 Category.≈ (η γ X)) (η δ X)) ------------------------------------------------------------------- → (∀ {X : Obj 𝒞} → (𝒟 Category.≈ (η (γ ∘ᵥ α) X)) (η (δ ∘ᵥ β) X)) ∘ᵥ-resp-≈ {𝒟 = 𝒟} α≈β γ≈δ {X = X} = ∘-resp-≈ 𝒟 γ≈δ α≈β MCodom : Category (lsuc ℓ) ℓ ℓ MCodom = let open Category in let open Functor in let open NaturalTransformation in let open Function.Equality using (_⟨$⟩_) renaming (cong to func-cong) in let open Category.HomReasoning in record { Obj = Functor MTele (Functors VTele (Setoids ℓ ℓ)) ; _⇒_ = NaturalTransformation ; _≈_ = λ {F} {G} α β → ∀ (ψ : Obj MTele) (Γ : Obj VTele) → (Setoids ℓ ℓ Category.≈ (η ((η α) ψ) Γ)) (η ((η β) ψ) Γ) ; id = idNt ; _∘_ = _∘ᵥ_ ; assoc = λ ψ Γ x≈y → Setoid.refl {!!} ; sym-assoc = λ ψ Γ x≈y → Setoid.refl {!!} ; identityˡ = λ {F} {G} {α} ψ Γ x≈y → Setoid.refl {!!} ; identityʳ = λ ψ Γ x → Setoid.refl {!!} ; identity² = Setoid.refl {!!} ; equiv = record { refl = Setoid.refl {!!} ; sym = Setoid.sym {!!} ; trans = Setoid.trans {!!} } ; ∘-resp-≈ = λ {F} {G} {H} {α} {β} {γ} {δ} α≈β γ≈δ ψ Γ → ∘ᵥ-resp-≈ {α = γ} {δ} {γ = α} {β} (γ≈δ _ _) (α≈β _ _) } Mslots : Functor MContexts (IndexedCategory sort (MCodom)) Mslots = let open Categories.NaturalTransformation in let open NaturalTransformation in record { F₀ = λ Θ A → record { F₀ = λ ψ → Term-Functor {Θ ,, ψ} {A} ; F₁ = λ ι → MRenaming-NT (ᵐ⇑ᵐ ι) ; identity = λ t≈s → ≈-trans (≈-trans ([]ᵐ-resp-≡ᵐ ᵐ⇑ᵐ-resp-idᵐ) [idᵐ]) t≈s ; homomorphism = λ t≈s → ≈-trans ([]ᵐ-resp-≈ t≈s) (≈-trans ([]ᵐ-resp-≡ᵐ ᵐ⇑ᵐ-resp-∘ᵐ) [∘ᵐ]) ; F-resp-≈ = λ ι≡μ t≈s → ≈-trans ([]ᵐ-resp-≈ t≈s) ([]ᵐ-resp-≡ᵐ (ᵐ⇑ᵐ-resp-≡ᵐ ι≡μ)) } ; F₁ = λ {Θ} {Θ'} ι A → record { η = λ Ψ → record { η = λ Γ → η (MRenaming-NT (⇑ᵐ ι)) Γ ; commute = commute (MRenaming-NT (⇑ᵐ ι)) ; sym-commute = sym-commute (MRenaming-NT (⇑ᵐ ι)) } ; commute = λ ι t≈s → ≈-trans ([]ᵐ-resp-≈ ([]ᵐ-resp-≈ t≈s)) ⇑-resp-+ ; sym-commute = λ ι t≈s → ≈-trans (≈-sym ⇑-resp-+) (([]ᵐ-resp-≈ ([]ᵐ-resp-≈ t≈s))) } ; identity = λ Θ ψ Γ t≈s → ≈-trans ([]ᵐ-resp-≈ t≈s) (≈-trans ([]ᵐ-resp-≡ᵐ ⇑ᵐ-resp-idᵐ) [idᵐ]) ; homomorphism = λ A ψ Γ t≈s → ≈-trans ([]ᵐ-resp-≈ t≈s) ∘ᵐ-resp-⇑-term ; F-resp-≈ = λ ι≡μ A ψ Γ t≈s → ≈-trans ([]ᵐ-resp-≈ t≈s) ([]ᵐ-resp-≡ᵐ (⇑ᵐ-resp-≡ᵐ ι≡μ)) }
hardware/ovc2b/stereo/fab/ovc2_stereo-In3.Cu.g4
DEVESHTARASIA/ovc
174
7703
G04 #@! TF.GenerationSoftware,KiCad,Pcbnew,6.0.0-rc1-unknown-8ecdf58~84~ubuntu16.04.1* G04 #@! TF.CreationDate,2018-10-22T17:09:18+08:00* G04 #@! TF.ProjectId,ovc2_stereo,6F7663325F73746572656F2E6B696361,rev?* G04 #@! TF.SameCoordinates,Original* G04 #@! TF.FileFunction,Copper,L4,Inr* G04 #@! TF.FilePolarity,Positive* %FSLAX46Y46*% G04 Gerber Fmt 4.6, Leading zero omitted, Abs format (unit mm)* G04 Created by KiCad (PCBNEW 6.0.0-rc1-unknown-8ecdf58~84~ubuntu16.04.1) date Mon 22 Oct 2018 05:09:18 PM +08* %MOMM*% %LPD*% G01* G04 APERTURE LIST* G04 #@! TA.AperFunction,ViaPad* %ADD10C,1.450000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD11C,2.550000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD12O,1.700000X1.700000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD13C,1.700000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD14O,0.800000X1.300000*% G04 #@! TD* G04 #@! TA.AperFunction,Conductor* %ADD15C,0.100000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD16C,0.800000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD17O,1.000000X1.000000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD18C,1.000000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD19C,1.850000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD20C,1.530000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD21C,4.000000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD22C,0.406400*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD23C,0.508000*% G04 #@! TD* G04 #@! TA.AperFunction,ViaPad* %ADD24C,0.510000*% G04 #@! TD* G04 #@! TA.AperFunction,Conductor* %ADD25C,0.254000*% G04 #@! TD* G04 #@! TA.AperFunction,Conductor* %ADD26C,0.170000*% G04 #@! TD* G04 APERTURE END LIST* D10* G04 #@! TO.N,GND* G04 #@! TO.C,J9* X189320000Y-83630000D03* X207320000Y-87630000D03* D11* X208320000Y-85630000D03* X188320000Y-85630000D03* G04 #@! TD* D10* G04 #@! TO.N,GND* G04 #@! TO.C,J8* X69320000Y-83630000D03* X87320000Y-87630000D03* D11* X88320000Y-85630000D03* X68320000Y-85630000D03* G04 #@! TD* D12* G04 #@! TO.N,FPGA_TCK* G04 #@! TO.C,J6* X95940000Y-73480000D03* G04 #@! TO.N,GND* X93400000Y-73480000D03* G04 #@! TO.N,+1V8* X95940000Y-70940000D03* G04 #@! TO.N,FPGA_TDO* X93400000Y-70940000D03* G04 #@! TO.N,FPGA_TMS* X95940000Y-68400000D03* D13* G04 #@! TO.N,FPGA_TDI* X93400000Y-68400000D03* G04 #@! TD* D12* G04 #@! TO.N,IMU_SCK_3V3* G04 #@! TO.C,J12* X182840000Y-76020000D03* G04 #@! TO.N,IMU_MOSI_3V3* X180300000Y-76020000D03* G04 #@! TO.N,IMU_MISO_3V3* X182840000Y-73480000D03* G04 #@! TO.N,IMU_NRST_3V3* X180300000Y-73480000D03* G04 #@! TO.N,IMU_CS_3V3* X182840000Y-70940000D03* G04 #@! TO.N,IMU_SYNC_IN_3V3* X180300000Y-70940000D03* G04 #@! TO.N,GND* X182840000Y-68400000D03* D13* G04 #@! TO.N,IMU_SYNC_OUT_3V3* X180300000Y-68400000D03* G04 #@! TD* D12* G04 #@! TO.N,GND* G04 #@! TO.C,J13* X200380000Y-68800000D03* G04 #@! TO.N,+1V8* X197840000Y-68800000D03* D13* G04 #@! TO.N,+3V3* X195300000Y-68800000D03* G04 #@! TD* D12* G04 #@! TO.N,GND* G04 #@! TO.C,J3* X145920000Y-81100000D03* G04 #@! TO.N,IMU_RX2_3V3* X148460000Y-81100000D03* D13* G04 #@! TO.N,IMU_TX2_3V3* X151000000Y-81100000D03* G04 #@! TD* D14* G04 #@! TO.N,GND* G04 #@! TO.C,J11* X143750000Y-65700000D03* G04 #@! TO.N,+5V* X142500000Y-65700000D03* G04 #@! TO.N,FAN_TACH* X141250000Y-65700000D03* D15* G04 #@! TO.N,Net-(J11-Pad1)* G36* X140219603Y-65050963D02* X140239018Y-65053843D01* X140258057Y-65058612D01* X140276537Y-65065224D01* X140294279Y-65073616D01* X140311114Y-65083706D01* X140326879Y-65095398D01* X140341421Y-65108579D01* X140354602Y-65123121D01* X140366294Y-65138886D01* X140376384Y-65155721D01* X140384776Y-65173463D01* X140391388Y-65191943D01* X140396157Y-65210982D01* X140399037Y-65230397D01* X140400000Y-65250000D01* X140400000Y-66150000D01* X140399037Y-66169603D01* X140396157Y-66189018D01* X140391388Y-66208057D01* X140384776Y-66226537D01* X140376384Y-66244279D01* X140366294Y-66261114D01* X140354602Y-66276879D01* X140341421Y-66291421D01* X140326879Y-66304602D01* X140311114Y-66316294D01* X140294279Y-66326384D01* X140276537Y-66334776D01* X140258057Y-66341388D01* X140239018Y-66346157D01* X140219603Y-66349037D01* X140200000Y-66350000D01* X139800000Y-66350000D01* X139780397Y-66349037D01* X139760982Y-66346157D01* X139741943Y-66341388D01* X139723463Y-66334776D01* X139705721Y-66326384D01* X139688886Y-66316294D01* X139673121Y-66304602D01* X139658579Y-66291421D01* X139645398Y-66276879D01* X139633706Y-66261114D01* X139623616Y-66244279D01* X139615224Y-66226537D01* X139608612Y-66208057D01* X139603843Y-66189018D01* X139600963Y-66169603D01* X139600000Y-66150000D01* X139600000Y-65250000D01* X139600963Y-65230397D01* X139603843Y-65210982D01* X139608612Y-65191943D01* X139615224Y-65173463D01* X139623616Y-65155721D01* X139633706Y-65138886D01* X139645398Y-65123121D01* X139658579Y-65108579D01* X139673121Y-65095398D01* X139688886Y-65083706D01* X139705721Y-65073616D01* X139723463Y-65065224D01* X139741943Y-65058612D01* X139760982Y-65053843D01* X139780397Y-65050963D01* X139800000Y-65050000D01* X140200000Y-65050000D01* X140219603Y-65050963D01* X140219603Y-65050963D01* G37* D16* X140000000Y-65700000D03* G04 #@! TD* D17* G04 #@! TO.N,GND* G04 #@! TO.C,J4* X133030000Y-65000000D03* G04 #@! TO.N,+1V8* X131760000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_23* X130490000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_22* X129220000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_21* X127950000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_20* X126680000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_19* X125410000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_18* X124140000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_17* X122870000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_16* X121600000Y-65000000D03* G04 #@! TO.N,GND* X120330000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_15* X119060000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_14* X117790000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_13* X116520000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_12* X115250000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_11* X113980000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_10* X112710000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_9* X111440000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_8* X110170000Y-65000000D03* G04 #@! TO.N,GND* X108900000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_7* X107630000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_6* X106360000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_5* X105090000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_4* X103820000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_3* X102550000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_2* X101280000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_1* X100010000Y-65000000D03* G04 #@! TO.N,/fpga_io/LSEXP_0* X98740000Y-65000000D03* G04 #@! TO.N,+1V8* X97470000Y-65000000D03* D18* G04 #@! TO.N,GND* X96200000Y-65000000D03* G04 #@! TD* D12* G04 #@! TO.N,GND* G04 #@! TO.C,J10* X84060000Y-68800000D03* G04 #@! TO.N,/fpga_io/AUXIO_IN2_3V3* X81520000Y-68800000D03* G04 #@! TO.N,/fpga_io/AUXIO_IN1_3V3* X78980000Y-68800000D03* G04 #@! TO.N,/fpga_io/AUXIO_OUT1_3V3* X76440000Y-68800000D03* D13* G04 #@! TO.N,/fpga_io/AUXIO_OUT2_3V3* X73900000Y-68800000D03* G04 #@! TD* D12* G04 #@! TO.N,GND* G04 #@! TO.C,J7* X84060000Y-105200000D03* G04 #@! TO.N,/fpga_io/AUXOUT3_3V3* X81520000Y-105200000D03* G04 #@! TO.N,/fpga_io/AUXOUT2_3V3* X78980000Y-105200000D03* G04 #@! TO.N,/fpga_io/AUXOUT1_3V3* X76440000Y-105200000D03* D13* G04 #@! TO.N,+3V3* X73900000Y-105200000D03* G04 #@! TD* D12* G04 #@! TO.N,FPGA_NSTATUS* G04 #@! TO.C,J5* X98580000Y-102960000D03* G04 #@! TO.N,FPGA_CONFIG_DATA0* X98580000Y-105500000D03* G04 #@! TO.N,FPGA_NCONFIG* X96040000Y-102960000D03* G04 #@! TO.N,FPGA_CONFIG_DCLK* X96040000Y-105500000D03* G04 #@! TO.N,FPGA_CONF_DONE* X93500000Y-102960000D03* D13* G04 #@! TO.N,GND* X93500000Y-105500000D03* G04 #@! TD* D19* G04 #@! TO.N,N/C* G04 #@! TO.C,J1* X136000000Y-71100000D03* X136000000Y-89900000D03* G04 #@! TD* D20* G04 #@! TO.N,GND* G04 #@! TO.C,J2* X126350000Y-102000000D03* X102650000Y-102000000D03* G04 #@! TD* D21* G04 #@! TO.N,GND* X69000000Y-104000000D03* D22* X103500000Y-81500000D03* X105500000Y-81500000D03* D23* X131200000Y-85700000D03* X131200000Y-88100000D03* D22* X126500000Y-88500000D03* X127500000Y-89500000D03* X125500000Y-92500000D03* X126500000Y-93500000D03* X126500000Y-91500000D03* X125500000Y-90500000D03* X124500000Y-91500000D03* X124500000Y-93500000D03* X123500000Y-92500000D03* X122500000Y-91500000D03* X122500000Y-92500000D03* X122500000Y-93500000D03* X123500000Y-93500000D03* X127500000Y-92500000D03* X124500000Y-82500030D03* X127500018Y-83500000D03* X126500000Y-79500000D03* X123500000Y-90500000D03* X124500000Y-87500000D03* X125500000Y-84500000D03* X124500000Y-89500000D03* X121500000Y-90500000D03* X121500000Y-91500000D03* X120500000Y-89500000D03* X120500000Y-90500000D03* X120500000Y-91500000D03* X121500000Y-88500000D03* X130800000Y-83500000D03* X133400000Y-78500000D03* X133400000Y-76100000D03* X125500000Y-70500000D03* X128000000Y-73000000D03* X124500000Y-71500000D03* X125500000Y-75500000D03* X123500000Y-74500000D03* X124500000Y-68500000D03* X119500000Y-69500000D03* X121500000Y-70500000D03* X122500000Y-71500000D03* X119500000Y-71500000D03* X117500000Y-70500000D03* X133500000Y-73500000D03* X121500000Y-73500000D03* X120500000Y-73500000D03* X120500000Y-74500000D03* X121500000Y-74500000D03* X117500000Y-72500000D03* X115500000Y-72500000D03* X115500000Y-70500000D03* X123500000Y-80500000D03* X110500000Y-74500000D03* X109500000Y-77500000D03* X108500000Y-76500000D03* X108500000Y-77500000D03* X108500000Y-78500000D03* X112500000Y-75500000D03* X112500000Y-77500000D03* X113500000Y-74500000D03* X115500000Y-74500000D03* X115500000Y-76500000D03* X118500000Y-75500000D03* X118500000Y-74500000D03* X119500000Y-76500000D03* X118500000Y-76500000D03* X120500000Y-76500000D03* X121500000Y-76500000D03* X120500000Y-75500000D03* X121500000Y-77500000D03* X116500000Y-79500000D03* X117500000Y-79500000D03* X117500000Y-78500000D03* X113500000Y-78500000D03* X112500000Y-81500000D03* X107500000Y-77500000D03* X112500000Y-82500000D03* X114500000Y-81500000D03* X114500000Y-83500000D03* X112500000Y-86500000D03* X110500000Y-84500000D03* X116500000Y-85500000D03* X118500000Y-79500000D03* X119500000Y-79500000D03* X119500000Y-77500000D03* X120500000Y-77500000D03* X117500000Y-83500000D03* X120500000Y-84500000D03* X118500000Y-80500000D03* X116500000Y-74500000D03* X109500000Y-72500000D03* X109500000Y-73500000D03* X107500000Y-71500000D03* X107500000Y-70500000D03* X106500000Y-70500000D03* X106500000Y-72500000D03* X104500000Y-72500000D03* X103500000Y-71500000D03* X102500000Y-72500000D03* X104500000Y-69500000D03* X104500000Y-74500000D03* X108500000Y-69500000D03* X104500000Y-84500000D03* X119500000Y-91500000D03* X120500000Y-92500000D03* X117500000Y-92500000D03* X120500000Y-93500000D03* X122100000Y-98800000D03* X119700000Y-98800000D03* X124500000Y-98800000D03* X117300000Y-98800000D03* X114900000Y-98800000D03* X112500000Y-98800000D03* X110100000Y-98800000D03* X107700000Y-98800000D03* X105300000Y-98800000D03* X104500000Y-98800000D03* X104500000Y-104200000D03* X115500000Y-92500000D03* X116500000Y-90500000D03* X119500000Y-90500000D03* X114500000Y-93500000D03* X118500000Y-93500000D03* X115500000Y-90500000D03* X113500000Y-90500000D03* X111500000Y-93500000D03* X112500000Y-92500000D03* X109500000Y-92500000D03* X108500000Y-93500000D03* X108500000Y-92500000D03* X109500000Y-91500000D03* X110500000Y-91500000D03* X110500000Y-90500000D03* X109500000Y-90500000D03* X112500000Y-88500000D03* X114500000Y-87500000D03* X115500000Y-87500000D03* X116500000Y-87500000D03* X116500000Y-88500000D03* X119500000Y-89500000D03* X119500000Y-88500000D03* X106500000Y-93500000D03* X103500000Y-92500000D03* X102500000Y-92500000D03* X103500000Y-91500000D03* X110500000Y-88500000D03* X109500000Y-88500000D03* X111500000Y-90500000D03* X104500000Y-91500000D03* X107500000Y-92500000D03* X108500000Y-91500000D03* X105500000Y-91500000D03* X105500000Y-90500000D03* X106500000Y-90500000D03* X107500000Y-89500000D03* X104500000Y-90500000D03* X103500000Y-89500000D03* X103500000Y-90500000D03* X104500000Y-92500000D03* X102500000Y-88500000D03* X103500000Y-88500000D03* X104500000Y-89500000D03* X106500000Y-89500000D03* X105500000Y-89500000D03* X106500000Y-88500000D03* D23* X106900000Y-104200000D03* D22* X111700000Y-104200000D03* X116500000Y-104200000D03* X106500000Y-75500000D03* X111500000Y-69500000D03* D23* X134500000Y-85600000D03* D22* X101500000Y-82500000D03* X110500000Y-80500000D03* X118500000Y-81500000D03* X117500000Y-80500000D03* X118500000Y-89500000D03* X120500000Y-79500000D03* X119500000Y-81500000D03* X119500000Y-84500000D03* X117500000Y-82500000D03* X118500000Y-85500000D03* X105500000Y-86500000D03* X103500000Y-86500000D03* X111500000Y-74500000D03* X114500000Y-74500000D03* X117500000Y-74500000D03* X109500000Y-81500000D03* X109500000Y-83500000D03* X109500000Y-86500000D03* X113500000Y-69500000D03* X104500000Y-79500000D03* X120500000Y-86500000D03* D23* X159000000Y-77500000D03* X169500000Y-94500000D03* X175500000Y-99500000D03* X169500000Y-98500000D03* X172800000Y-98700000D03* X174700000Y-98700000D03* X170800000Y-99500000D03* X172100000Y-101000000D03* X172100000Y-99900000D03* X173700000Y-99600000D03* X169500000Y-101500000D03* X166000000Y-96500000D03* X164000000Y-98500000D03* X161500000Y-101000000D03* X163200000Y-99600000D03* X161499998Y-99600000D03* X144100000Y-86500000D03* X153500000Y-92500000D03* X157000000Y-100600000D03* X137200000Y-98500000D03* X152000000Y-104700000D03* X152000000Y-106000000D03* X153400000Y-106000000D03* X153400000Y-104700000D03* X149000000Y-100000000D03* X151900000Y-94500000D03* X153500000Y-94500000D03* X131900000Y-94500000D03* X139600000Y-88400010D03* X149000000Y-98500000D03* X137200000Y-96600000D03* D22* X126500000Y-76500000D03* D23* X86200000Y-84400000D03* X86200000Y-81400000D03* X86200000Y-91600000D03* X84000000Y-90500000D03* X83100000Y-79300000D03* X81000304Y-79300000D03* X79984318Y-79300000D03* X78000000Y-79300000D03* X76000000Y-79300000D03* X70800014Y-86492000D03* X70800000Y-91572000D03* D21* X69000000Y-70000000D03* X89000000Y-70000000D03* X89000000Y-104000000D03* X188000000Y-104000000D03* X188000000Y-70000000D03* X208000000Y-70000000D03* X208000000Y-104000000D03* D23* X96100000Y-99200000D03* X100799994Y-98800000D03* X72700000Y-79300000D03* X81400000Y-90600000D03* X80000000Y-81600000D03* X75900000Y-84900000D03* X74600000Y-91200000D03* X67400000Y-78000000D03* X70300000Y-78000000D03* D22* X103500000Y-76500000D03* X102500000Y-77500000D03* X105500000Y-77500000D03* D24* X93600000Y-79200000D03* X93600000Y-81700000D03* X95900000Y-97900000D03* X92800000Y-98100000D03* D22* X96700000Y-95600000D03* X95600000Y-91650000D03* X96800000Y-93000000D03* D23* X84000000Y-86500000D03* D24* X140700000Y-85950000D03* X139100000Y-84300000D03* X138450000Y-81150000D03* X138500000Y-78649992D03* D22* X114700000Y-105300000D03* D24* X141550000Y-75050000D03* X145800000Y-78700000D03* X146000000Y-76050000D03* X149200000Y-78800000D03* X150000000Y-75200000D03* D23* X151700000Y-84199990D03* D24* X148200000Y-74100000D03* X152900000Y-84200000D03* X150500000Y-84200000D03* D23* X153500000Y-79200000D03* D24* X144700000Y-67300000D03* X141600000Y-67900000D03* X136200000Y-64900000D03* D23* X160300000Y-78100000D03* X157900000Y-70900000D03* X162900000Y-71500000D03* X169400000Y-74300000D03* X170600000Y-84400000D03* X153400000Y-76300000D03* D24* X151100000Y-71400000D03* D23* X153700000Y-70600000D03* X153400000Y-74500000D03* X195900000Y-79200000D03* X197900000Y-79200000D03* X200000000Y-79200000D03* X201000000Y-79200000D03* X192900000Y-79200000D03* X203100000Y-79200000D03* X79200000Y-77400000D03* D24* X77900000Y-77700000D03* X80400000Y-77700000D03* D23* X206300000Y-84400000D03* X203900000Y-86500000D03* X206300000Y-81400000D03* X203900000Y-90500000D03* X197900000Y-77500000D03* X201100000Y-77500000D03* X206300000Y-91600000D03* X190700000Y-86500000D03* X190700000Y-91800000D03* X190600000Y-81900000D03* X168800000Y-71500000D03* X177600000Y-84300000D03* X130400000Y-101000000D03* X134800000Y-83400000D03* D22* X110500000Y-86500000D03* D23* X168600000Y-102600000D03* D24* X179100000Y-102500000D03* X137600000Y-101200000D03* X138400000Y-103200000D03* D23* G04 #@! TO.N,+3V3* X176700000Y-99700000D03* X178500000Y-96500000D03* X178500000Y-98600000D03* X178500000Y-101000000D03* X172500000Y-104100000D03* X171500000Y-94500000D03* X174000000Y-94500000D03* X171500000Y-98500000D03* X160400000Y-94500000D03* X75700000Y-84100000D03* D16* X84200000Y-74800000D03* D23* X67400000Y-80400000D03* D24* X93000000Y-80200000D03* X148200000Y-75100000D03* X142099988Y-78900000D03* D16* X132800000Y-72000000D03* D23* X169300000Y-77200000D03* X171900000Y-84400000D03* X172000000Y-73700000D03* D24* X152800000Y-70500000D03* D23* X90000000Y-83300000D03* X90000000Y-81700000D03* D24* X192600000Y-74000000D03* X194400000Y-74000000D03* D23* X205600000Y-96200000D03* X207000000Y-96200000D03* D22* G04 #@! TO.N,FPGA_CONFIG_DCLK* X102500000Y-70500000D03* G04 #@! TO.N,PCIE_REFCLK-* X105300000Y-104200000D03* G04 #@! TO.N,PCIE_REFCLK+* X106100000Y-104200000D03* G04 #@! TO.N,PCIE_LANE0_RX-* X111500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE0_RX+* X112500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE1_RX-* X113500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE1_RX+* X114500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE1_TX-* X110900000Y-98800000D03* G04 #@! TO.N,PCIE_LANE1_TX+* X111700000Y-98800000D03* G04 #@! TO.N,PCIE_LANE0_TX-* X106100000Y-98800000D03* G04 #@! TO.N,PCIE_LANE0_TX+* X106900000Y-98800000D03* G04 #@! TO.N,FPGA_NCONFIG* X108500000Y-73500000D03* D24* X115700000Y-104500000D03* X101534269Y-104000000D03* D22* G04 #@! TO.N,FPGA_CONF_DONE* X106500000Y-69500000D03* D24* X100700000Y-106466740D03* D22* G04 #@! TO.N,FPGA_NSTATUS* X104500000Y-71500000D03* D24* X114900000Y-104500000D03* D23* G04 #@! TO.N,+12V* X169900000Y-104600000D03* X171000000Y-104600000D03* X169900000Y-106000000D03* X171000000Y-106000000D03* X160000000Y-104600000D03* X158500000Y-103400000D03* X158500000Y-104600000D03* X130400000Y-101900000D03* X154900000Y-100400000D03* X143000000Y-100000000D03* X143000000Y-101300000D03* X139600002Y-105000000D03* X138600000Y-101200000D03* X140100000Y-106000000D03* X127800000Y-104200000D03* D24* X138500000Y-99700000D03* D23* G04 #@! TO.N,CAM2_CLKIN+* X84000000Y-87500000D03* X91348552Y-87148552D03* G04 #@! TO.N,CAM2_CLKIN-* X84000000Y-88500006D03* X91851448Y-87651448D03* D22* G04 #@! TO.N,CAM2_CLKOUT+* X102500000Y-87500000D03* D23* X73050400Y-92456000D03* D22* G04 #@! TO.N,CAM2_CLKOUT-* X102500000Y-86500000D03* D23* X73761600Y-92456000D03* D22* G04 #@! TO.N,CAM1_CLKIN+* X121500000Y-89500000D03* D23* X203900000Y-87500000D03* G04 #@! TO.N,CAM1_CLKIN-* X203900000Y-88500000D03* D22* X122500000Y-89500000D03* D23* G04 #@! TO.N,CAM1_CLKOUT+* X193100000Y-92400000D03* D22* X124500000Y-85500000D03* D23* G04 #@! TO.N,CAM1_CLKOUT-* X193800000Y-92400000D03* D22* X124500000Y-84500000D03* G04 #@! TO.N,CAM2_DOUT3+* X103500000Y-83500000D03* D23* X81178400Y-92456000D03* D22* G04 #@! TO.N,CAM2_DOUT3-* X103500000Y-82500000D03* D23* X81889600Y-92456000D03* D22* G04 #@! TO.N,CAM2_DOUT2+* X103500000Y-85500000D03* D23* X79146400Y-92456000D03* D22* G04 #@! TO.N,CAM2_DOUT2-* X103500000Y-84500000D03* D23* X79857600Y-92456000D03* G04 #@! TO.N,CAM2_DOUT1+* X78234552Y-97787448D03* X77114400Y-92456000D03* G04 #@! TO.N,CAM2_DOUT1-* X78737448Y-97284552D03* X77825600Y-92456000D03* G04 #@! TO.N,CAM2_DOUT0+* X77726552Y-99565448D03* X75082400Y-92456000D03* G04 #@! TO.N,CAM2_DOUT0-* X78229448Y-99062552D03* X75793600Y-92456000D03* D22* G04 #@! TO.N,CAM1_DOUT3+* X125500000Y-80500000D03* D23* X201903600Y-92400000D03* G04 #@! TO.N,CAM1_DOUT3-* X201192400Y-92400000D03* D22* X125500000Y-81500000D03* G04 #@! TO.N,CAM1_DOUT2+* X125500000Y-83500000D03* D23* X199160400Y-92400000D03* D22* G04 #@! TO.N,CAM1_DOUT2-* X125500000Y-82500000D03* D23* X199871600Y-92400000D03* D22* G04 #@! TO.N,CAM1_DOUT1+* X123500000Y-87500000D03* D23* X197128400Y-92400000D03* D22* G04 #@! TO.N,CAM1_DOUT1-* X123500000Y-86500000D03* D23* X197839600Y-92400000D03* D22* G04 #@! TO.N,CAM1_DOUT0+* X124500000Y-88500000D03* D23* X195096400Y-92400000D03* D22* G04 #@! TO.N,CAM1_DOUT0-* X125500000Y-88500000D03* D23* X195807600Y-92400000D03* G04 #@! TO.N,+1V8* X158100000Y-98600000D03* X158500000Y-94500000D03* D22* X121500000Y-83500000D03* X123500000Y-78500000D03* X123500000Y-83500000D03* X137800000Y-75300000D03* X137800000Y-74500000D03* X124500000Y-76500000D03* X109500000Y-78500000D03* X116500000Y-78500000D03* X112500000Y-78500000D03* X109500000Y-79500000D03* X116500000Y-84500000D03* X111500000Y-83500000D03* X106500000Y-76500000D03* X121500000Y-82500000D03* X108500000Y-86500000D03* X108500000Y-83500000D03* X106500000Y-82500000D03* X106500000Y-85500000D03* X108500000Y-81500000D03* X123500000Y-75500000D03* X111500000Y-70500000D03* X113500000Y-70500000D03* X105500000Y-79500000D03* X111500000Y-72500000D03* X122500000Y-85500000D03* D23* X166300000Y-99600000D03* X167400000Y-99600000D03* X168200000Y-98500000D03* X162500000Y-104100000D03* X159300000Y-98600000D03* X89900000Y-80800000D03* X89900000Y-79200000D03* D24* X97000000Y-100800000D03* X92700000Y-100500000D03* D23* X81600000Y-82300000D03* X67400000Y-75600000D03* X100000000Y-77800000D03* D24* X94200000Y-80200000D03* X92800000Y-97300000D03* D23* X99300000Y-96100000D03* D24* X143850000Y-82400000D03* X136200000Y-66700000D03* D23* X161200000Y-78100000D03* D22* X108500000Y-70500000D03* D24* X148500000Y-71500000D03* X145300000Y-77800000D03* D23* X187200000Y-93800000D03* X98600000Y-68800000D03* G04 #@! TO.N,JETSON_CARRIER_PWR_ON* X121500000Y-105000000D03* X130600000Y-102800000D03* X154600000Y-103400000D03* D22* G04 #@! TO.N,CAM1_SYNC-* X125500000Y-79500000D03* D23* X203200000Y-92400000D03* G04 #@! TO.N,CAM1_SYNC+* X203900000Y-92400000D03* D22* X125500000Y-78500000D03* D23* G04 #@! TO.N,CAM2_SYNC-* X99311448Y-82547448D03* X83210400Y-92456000D03* G04 #@! TO.N,CAM2_SYNC+* X98808552Y-82044552D03* X83921600Y-92456000D03* G04 #@! TO.N,/power/AGND* X139600000Y-98600000D03* D22* X153100000Y-96600000D03* G04 #@! TO.N,FPGA_CONFIG_DATA0* X103500000Y-73500000D03* D23* G04 #@! TO.N,PCIE_RST_3V3* X108500000Y-104200000D03* G04 #@! TO.N,/imagers/CAM2_VDDPIX* X84100000Y-79299994D03* X81999984Y-79300000D03* X77000000Y-79300000D03* X75000000Y-79300000D03* G04 #@! TO.N,Net-(R35-Pad1)* X86200006Y-83400000D03* G04 #@! TO.N,/imagers/CAM2_1V8* X89100000Y-79200000D03* X89100000Y-80800000D03* X83999988Y-89600000D03* X70800012Y-92588000D03* X84000000Y-85500000D03* G04 #@! TO.N,/imagers/CAM2_3V3* X86200000Y-92500000D03* X86200000Y-82400000D03* X89100000Y-81700000D03* X89100000Y-83300000D03* X79000000Y-79300000D03* X70800000Y-87508000D03* D22* G04 #@! TO.N,Net-(R34-Pad2)* X106500000Y-74500000D03* G04 #@! TO.N,JETSON_RESET_OUT* X121300000Y-104200000D03* D23* X161700000Y-103900000D03* G04 #@! TO.N,/power/PG_GRP1* X161500000Y-103100000D03* X172000000Y-103100000D03* X130700000Y-103700000D03* D24* X140000000Y-102400000D03* D23* G04 #@! TO.N,/imagers/CAM1_3V3* X199000000Y-79200000D03* X206300000Y-82400000D03* X206300000Y-92600000D03* X206300000Y-93600000D03* X190700000Y-87500000D03* G04 #@! TO.N,/imagers/CAM1_VDDPIX* X195000000Y-79200000D03* X197000000Y-79200000D03* X202000000Y-79200000D03* X204100000Y-79200000D03* G04 #@! TO.N,/imagers/CAM1_1V8* X203900000Y-85483598D03* X203900000Y-89500000D03* X190700000Y-92800000D03* G04 #@! TO.N,Net-(R62-Pad1)* X206300000Y-83500000D03* D22* G04 #@! TO.N,/fpga_power/VCC_GXBL* X113500000Y-88500000D03* X112500000Y-90500000D03* X114500000Y-90500000D03* X111500000Y-88500000D03* X115500000Y-89500000D03* X117500000Y-88500000D03* X117500000Y-90500000D03* D23* X127200000Y-97000000D03* X125000000Y-96000000D03* X127700000Y-97700000D03* X126600000Y-97700000D03* D22* G04 #@! TO.N,/fpga_power/RREF_TL* X127500000Y-88500000D03* G04 #@! TO.N,/fpga_pcie/REFCLK-* X102995200Y-97500000D03* X114500000Y-88500000D03* G04 #@! TO.N,/fpga_pcie/REFCLK+* X103604800Y-97500000D03* X114500000Y-89500000D03* G04 #@! TO.N,/fpga_io/PCIE_RST_1V8* X105500000Y-76500000D03* D24* X102000000Y-97500000D03* D23* G04 #@! TO.N,1V03* X134700000Y-106000000D03* X130300000Y-106000000D03* X135200000Y-99600000D03* X133700000Y-98500000D03* X133500000Y-94500000D03* D22* G04 #@! TO.N,/fpga_power/RREF_BL* X102500000Y-90500000D03* G04 #@! TO.N,/fpga_io/CLK100* X104500000Y-80500000D03* G04 #@! TO.N,0V9* X110500000Y-75500000D03* X111500000Y-76500000D03* X111500000Y-77500000D03* X112500000Y-76500000D03* X114500000Y-76500000D03* X113500000Y-76508408D03* X111500000Y-78500000D03* X116500000Y-76500000D03* X117500000Y-76500000D03* X118500000Y-77500000D03* X117500000Y-77500000D03* X115500000Y-77500000D03* X116500000Y-77500000D03* X113500000Y-77500000D03* X114500000Y-77500000D03* X114500000Y-80500000D03* X113500000Y-80500000D03* X112500000Y-80500000D03* X113500000Y-81500000D03* X111500000Y-81500000D03* X111500000Y-82500000D03* X110500000Y-83500000D03* X113500000Y-82500000D03* X116500000Y-81500000D03* X115500000Y-82500000D03* X115500000Y-83500000D03* X113500000Y-83500000D03* X112500000Y-84500000D03* X113500000Y-84500000D03* X114500000Y-84500000D03* X111500000Y-85500000D03* X112500000Y-85500000D03* X113500000Y-85500000D03* X114500000Y-85500000D03* X117500000Y-85500000D03* X118500000Y-83500000D03* X118500000Y-84500000D03* D23* X146500000Y-88500000D03* X152000000Y-99700000D03* X145200000Y-94500000D03* X146800000Y-94500000D03* X146000000Y-94500000D03* X144400000Y-94500000D03* X147600000Y-94500000D03* X147600000Y-92500000D03* X147600000Y-90500000D03* D24* X145300000Y-84400000D03* D22* G04 #@! TO.N,/fpga_power/VCCA* X114500000Y-78500000D03* X115500000Y-80500000D03* X113500000Y-87500000D03* X117500000Y-87500000D03* X118500000Y-86500000D03* X119500000Y-82500000D03* X119500000Y-80500000D03* D23* G04 #@! TO.N,DISCHARGE* X122500000Y-105000000D03* X139000000Y-87000000D03* X133500000Y-91500000D03* D24* X107700000Y-104200000D03* X117000000Y-106000000D03* D22* G04 #@! TO.N,PCIE_LANE2_RX+* X115500000Y-91499994D03* G04 #@! TO.N,PCIE_LANE2_RX-* X116500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE2_TX+* X115700000Y-98800000D03* G04 #@! TO.N,PCIE_LANE2_TX-* X116500000Y-98800000D03* G04 #@! TO.N,PCIE_LANE3_RX+* X117500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE3_RX-* X118500000Y-91500000D03* G04 #@! TO.N,PCIE_LANE3_TX+* X121300000Y-98800000D03* G04 #@! TO.N,PCIE_LANE3_TX-* X120500000Y-98800000D03* D24* G04 #@! TO.N,FPGA_TMS* X105000000Y-67800000D03* D22* G04 #@! TO.N,FPGA_TCK* X107500000Y-68500000D03* D24* G04 #@! TO.N,FPGA_TDI* X101500000Y-68500000D03* D22* G04 #@! TO.N,FPGA_TDO* X106500000Y-68500000D03* G04 #@! TO.N,TX2_LED* X110900000Y-104200000D03* D16* G04 #@! TO.N,+5V* X138300000Y-73000000D03* X118000000Y-105000000D03* X142000000Y-81400000D03* X142400000Y-74200000D03* X143100000Y-69700000D03* D22* G04 #@! TO.N,/fpga_io/LED_DI_1V8* X124500000Y-72500000D03* D24* X142400000Y-77000000D03* D22* G04 #@! TO.N,/fpga_io/LED_CI_1V8* X125500000Y-71500000D03* D24* X143100000Y-75700000D03* D23* G04 #@! TO.N,CAM2_MISO_3V3* X70100000Y-88000000D03* G04 #@! TO.N,CAM2_MOSI_3V3* X70800000Y-88500000D03* G04 #@! TO.N,CAM2_SCK_3V3* X70800000Y-90556000D03* G04 #@! TO.N,CAM2_TRG_3V3* X70300000Y-81200000D03* G04 #@! TO.N,CAM2_RST_3V3* X70800000Y-84460000D03* G04 #@! TO.N,CAM2_CS_3V3* X70800000Y-85476000D03* G04 #@! TO.N,/fpga_io/HSEXP_1-* X138007799Y-86544400D03* D22* X125500000Y-85500000D03* G04 #@! TO.N,/fpga_io/HSEXP_1+* X125500000Y-86500000D03* D23* X138007799Y-87255600D03* D22* G04 #@! TO.N,/fpga_io/HSEXP_3+* X126500000Y-84499980D03* D23* X135500000Y-84855600D03* G04 #@! TO.N,/fpga_io/HSEXP_3-* X135500000Y-84144400D03* D22* X126500000Y-83500000D03* D23* G04 #@! TO.N,/fpga_io/HSEXP_7-* X131200000Y-74544400D03* D22* X121500000Y-84500000D03* D23* G04 #@! TO.N,/fpga_io/HSEXP_7+* X131200000Y-75255600D03* D22* X122500000Y-84500000D03* G04 #@! TO.N,/fpga_io/HSEXP16* X125500000Y-76500000D03* X135399994Y-76100000D03* G04 #@! TO.N,/fpga_io/HSEXP15* X138000000Y-77000000D03* X124500000Y-78500000D03* G04 #@! TO.N,/fpga_io/HSEXP14* X138500000Y-77500000D03* X122500000Y-78500000D03* G04 #@! TO.N,/fpga_io/HSEXP13* X135600000Y-78500000D03* X124500000Y-81500000D03* G04 #@! TO.N,/fpga_io/HSEXP12* X134700000Y-78500000D03* X124500000Y-80500000D03* G04 #@! TO.N,/fpga_io/HSEXP11* X135600000Y-80200000D03* X123500000Y-82500000D03* G04 #@! TO.N,/fpga_io/HSEXP10* X134700000Y-80200000D03* X123500000Y-81500000D03* G04 #@! TO.N,/fpga_io/HSEXP9* X135600000Y-81700000D03* X122500000Y-83500000D03* G04 #@! TO.N,/fpga_io/HSEXP8* X134700000Y-81700000D03* X124500000Y-83500000D03* D24* G04 #@! TO.N,CAM1_CS_3V3* X153000000Y-77600000D03* D23* X190700000Y-85400000D03* D22* X187200000Y-77200000D03* D23* G04 #@! TO.N,CAM1_RST_3V3* X190700000Y-84500000D03* X181800000Y-78300000D03* D24* G04 #@! TO.N,CAM1_TRG_3V3* X193900000Y-79200000D03* G04 #@! TO.N,CAM1_SCK_3V3* X152100000Y-79000000D03* D23* X194800000Y-86100000D03* X184900000Y-81100000D03* G04 #@! TO.N,CAM1_MISO_3V3* X196100000Y-87500000D03* D22* X187200000Y-75300000D03* D24* G04 #@! TO.N,CAM1_MOSI_3V3* X152900000Y-78400000D03* D23* X194800000Y-87500000D03* X186200000Y-79400000D03* D22* G04 #@! TO.N,/fpga_io/CAM1_RST_1V8* X124500000Y-69500000D03* G04 #@! TO.N,/fpga_io/CAM2_MISO_1V8* X103500000Y-72500000D03* G04 #@! TO.N,/fpga_io/CAM2_TRG_1V8* X104500000Y-76500000D03* G04 #@! TO.N,/fpga_io/CAM2_RST_1V8* X103500000Y-77500000D03* G04 #@! TO.N,/fpga_io/CAM2_CS_1V8* X105500000Y-75500000D03* G04 #@! TO.N,/fpga_io/CAM2_MOSI_1V8* X105500000Y-74500000D03* G04 #@! TO.N,/fpga_io/CAM2_SCK_1V8* X102500000Y-73500000D03* G04 #@! TO.N,/fpga_io/IMU_SYNC_OUT_1V8* X123500000Y-72500000D03* D23* G04 #@! TO.N,/fpga_io/IMU_MISO_1V8* X157500000Y-76000000D03* D22* X122500000Y-72500000D03* G04 #@! TO.N,/fpga_io/CAM1_MISO_1V8* X124500000Y-70500000D03* G04 #@! TO.N,IMU_TX1_3V3* X119700000Y-104200000D03* D23* X166600000Y-90500000D03* X168100000Y-80000000D03* D22* G04 #@! TO.N,IMU_RX1_3V3* X118900000Y-104200000D03* D23* X164200000Y-90500000D03* G04 #@! TO.N,IMU_SYNC_OUT_3V3* X168400000Y-79000000D03* X165925000Y-72175000D03* G04 #@! TO.N,IMU_SCK_3V3* X149200000Y-69200000D03* G04 #@! TO.N,IMU_MOSI_3V3* X149200000Y-70100000D03* G04 #@! TO.N,IMU_MISO_3V3* X178500000Y-79700000D03* G04 #@! TO.N,IMU_NRST_3V3* X147900000Y-69600000D03* G04 #@! TO.N,IMU_SYNC_IN_3V3* X147900000Y-68700000D03* G04 #@! TO.N,IMU_CS_3V3* X147300000Y-67900000D03* G04 #@! TO.N,CAM2_MONITOR* X70700000Y-82400000D03* D22* G04 #@! TO.N,/fpga_io/CAM2_MONITOR_1V8* X104500000Y-73500000D03* D23* G04 #@! TO.N,/fpga_io/IMU_TX1_1V8* X157500000Y-77000000D03* D22* X123500000Y-73500000D03* D23* G04 #@! TO.N,Net-(R8-Pad1)* X133100000Y-104200000D03* X128300000Y-105000000D03* D22* G04 #@! TO.N,/fpga_io/AUXOUT3* X103500000Y-74500000D03* G04 #@! TO.N,/fpga_io/AUXOUT2* X102500000Y-74500000D03* G04 #@! TO.N,/fpga_io/AUXOUT1* X105500000Y-73500000D03* G04 #@! TO.N,MPU_MOSI* X103500000Y-87500000D03* D23* X100200006Y-90000000D03* G04 #@! TO.N,MPU_SCK* X100500000Y-91500000D03* D22* X104500000Y-88500000D03* D23* G04 #@! TO.N,MPU_CS* X99000000Y-91500000D03* D22* X104500000Y-86500000D03* G04 #@! TO.N,MPU_INT* X105500000Y-88500000D03* D23* X99300000Y-94499992D03* G04 #@! TO.N,MPU_FSYNC* X100500000Y-93000000D03* D22* X105500000Y-87500000D03* D23* G04 #@! TO.N,MPU_MISO* X100900000Y-94500000D03* D22* X107500000Y-88500000D03* G04 #@! TO.N,Net-(U3-PadC6)* X125500000Y-73500000D03* X138000000Y-76000000D03* G04 #@! TO.N,Net-(U3-PadC7)* X125500000Y-74500000D03* G04 #@! TO.N,Net-(U3-PadD7)* X124500000Y-74500000D03* X137950010Y-78200000D03* G04 #@! TO.N,FAN_TACH* X122500000Y-70500000D03* G04 #@! TO.N,FAN_PWM* X121500000Y-71500000D03* G04 #@! TO.N,/fpga_io/CAM1_TRG_1V8* X123500000Y-71500000D03* G04 #@! TO.N,/fpga_io/LSEXP_2* X105500000Y-72500000D03* G04 #@! TO.N,/fpga_io/CONF_CRC_ERROR* X107500000Y-79500000D03* G04 #@! TD* D25* G04 #@! TO.N,0V9* X147800000Y-99300000D02* X147100000Y-98600000D01* X151600000Y-99300000D02* X147800000Y-99300000D01* X152000000Y-99700000D02* X151600000Y-99300000D01* G04 #@! TD* D26* G04 #@! TO.N,+3V3* G36* X145036801Y-66535769D02* X145043779Y-66570849D01* X145043779Y-66570856D01* X145081839Y-66762198D01* X145081839Y-66762200D01* X145096758Y-66798217D01* X145136070Y-66893125D01* X145136071Y-66893126D01* X145244458Y-67055337D01* X145344665Y-67155544D01* X145344668Y-67155545D01* X145506873Y-67263929D01* X145506875Y-67263930D01* X145529338Y-67273234D01* X145637800Y-67318161D01* X145637802Y-67318161D01* X145829144Y-67356221D01* X145829146Y-67356221D01* X145864231Y-67363200D01* X147179113Y-67363200D01* X146992869Y-67440345D01* X146840345Y-67592869D01* X146757800Y-67792150D01* X146757800Y-68007850D01* X146840345Y-68207131D01* X146992869Y-68359655D01* X147192150Y-68442200D01* X147407850Y-68442200D01* X147422409Y-68436169D01* X147357800Y-68592150D01* X147357800Y-68807850D01* X147440345Y-69007131D01* X147583214Y-69150000D01* X147440345Y-69292869D01* X147357800Y-69492150D01* X147357800Y-69707850D01* X147440345Y-69907131D01* X147592869Y-70059655D01* X147792150Y-70142200D01* X148007850Y-70142200D01* X148207131Y-70059655D01* X148359655Y-69907131D01* X148442200Y-69707850D01* X148442200Y-69492150D01* X148359655Y-69292869D01* X148216786Y-69150000D01* X148274636Y-69092150D01* X148657800Y-69092150D01* X148657800Y-69307850D01* X148740345Y-69507131D01* X148883214Y-69650000D01* X148740345Y-69792869D01* X148657800Y-69992150D01* X148657800Y-70207850D01* X148740345Y-70407131D01* X148892869Y-70559655D01* X149092150Y-70642200D01* X149307850Y-70642200D01* X149507131Y-70559655D01* X149574636Y-70492150D01* X153157800Y-70492150D01* X153157800Y-70707850D01* X153240345Y-70907131D01* X153392869Y-71059655D01* X153592150Y-71142200D01* X153807850Y-71142200D01* X154007131Y-71059655D01* X154159655Y-70907131D01* X154207281Y-70792150D01* X157357800Y-70792150D01* X157357800Y-71007850D01* X157440345Y-71207131D01* X157592869Y-71359655D01* X157792150Y-71442200D01* X158007850Y-71442200D01* X158128681Y-71392150D01* X162357800Y-71392150D01* X162357800Y-71607850D01* X162440345Y-71807131D01* X162592869Y-71959655D01* X162792150Y-72042200D01* X163007850Y-72042200D01* X163207131Y-71959655D01* X163359655Y-71807131D01* X163442200Y-71607850D01* X163442200Y-71392150D01* X168257800Y-71392150D01* X168257800Y-71607850D01* X168340345Y-71807131D01* X168492869Y-71959655D01* X168692150Y-72042200D01* X168907850Y-72042200D01* X169107131Y-71959655D01* X169259655Y-71807131D01* X169342200Y-71607850D01* X169342200Y-71392150D01* X169259655Y-71192869D01* X169107131Y-71040345D01* X168907850Y-70957800D01* X168692150Y-70957800D01* X168492869Y-71040345D01* X168340345Y-71192869D01* X168257800Y-71392150D01* X163442200Y-71392150D01* X163359655Y-71192869D01* X163207131Y-71040345D01* X163007850Y-70957800D01* X162792150Y-70957800D01* X162592869Y-71040345D01* X162440345Y-71192869D01* X162357800Y-71392150D01* X158128681Y-71392150D01* X158207131Y-71359655D01* X158359655Y-71207131D01* X158442200Y-71007850D01* X158442200Y-70940000D01* X179139502Y-70940000D01* X179227840Y-71384103D01* X179479404Y-71760596D01* X179855897Y-72012160D01* X180187901Y-72078200D01* X180412099Y-72078200D01* X180744103Y-72012160D01* X181120596Y-71760596D01* X181372160Y-71384103D01* X181460498Y-70940000D01* X181679502Y-70940000D01* X181767840Y-71384103D01* X182019404Y-71760596D01* X182395897Y-72012160D01* X182727901Y-72078200D01* X182952099Y-72078200D01* X183284103Y-72012160D01* X183660596Y-71760596D01* X183912160Y-71384103D01* X184000498Y-70940000D01* X183912160Y-70495897D01* X183660596Y-70119404D01* X183284103Y-69867840D01* X182952099Y-69801800D01* X182727901Y-69801800D01* X182395897Y-69867840D01* X182019404Y-70119404D01* X181767840Y-70495897D01* X181679502Y-70940000D01* X181460498Y-70940000D01* X181372160Y-70495897D01* X181120596Y-70119404D01* X180744103Y-69867840D01* X180412099Y-69801800D01* X180187901Y-69801800D01* X179855897Y-69867840D01* X179479404Y-70119404D01* X179227840Y-70495897D01* X179139502Y-70940000D01* X158442200Y-70940000D01* X158442200Y-70792150D01* X158359655Y-70592869D01* X158207131Y-70440345D01* X158007850Y-70357800D01* X157792150Y-70357800D01* X157592869Y-70440345D01* X157440345Y-70592869D01* X157357800Y-70792150D01* X154207281Y-70792150D01* X154242200Y-70707850D01* X154242200Y-70492150D01* X154159655Y-70292869D01* X154007131Y-70140345D01* X153807850Y-70057800D01* X153592150Y-70057800D01* X153392869Y-70140345D01* X153240345Y-70292869D01* X153157800Y-70492150D01* X149574636Y-70492150D01* X149659655Y-70407131D01* X149742200Y-70207850D01* X149742200Y-69992150D01* X149659655Y-69792869D01* X149516786Y-69650000D01* X149621937Y-69544849D01* X185711800Y-69544849D01* X185711800Y-70455151D01* X186060158Y-71296161D01* X186703839Y-71939842D01* X187544849Y-72288200D01* X188455151Y-72288200D01* X189296161Y-71939842D01* X189939842Y-71296161D01* X190288200Y-70455151D01* X190288200Y-69544849D01* X189979674Y-68800000D01* X196679502Y-68800000D01* X196767840Y-69244103D01* X197019404Y-69620596D01* X197395897Y-69872160D01* X197727901Y-69938200D01* X197952099Y-69938200D01* X198284103Y-69872160D01* X198660596Y-69620596D01* X198912160Y-69244103D01* X199000498Y-68800000D01* X199219502Y-68800000D01* X199307840Y-69244103D01* X199559404Y-69620596D01* X199935897Y-69872160D01* X200267901Y-69938200D01* X200492099Y-69938200D01* X200824103Y-69872160D01* X201200596Y-69620596D01* X201251208Y-69544849D01* X205711800Y-69544849D01* X205711800Y-70455151D01* X206060158Y-71296161D01* X206703839Y-71939842D01* X207544849Y-72288200D01* X208455151Y-72288200D01* X209296161Y-71939842D01* X209939842Y-71296161D01* X210288200Y-70455151D01* X210288200Y-69544849D01* X209939842Y-68703839D01* X209296161Y-68060158D01* X208455151Y-67711800D01* X207544849Y-67711800D01* X206703839Y-68060158D01* X206060158Y-68703839D01* X205711800Y-69544849D01* X201251208Y-69544849D01* X201452160Y-69244103D01* X201540498Y-68800000D01* X201452160Y-68355897D01* X201200596Y-67979404D01* X200824103Y-67727840D01* X200492099Y-67661800D01* X200267901Y-67661800D01* X199935897Y-67727840D01* X199559404Y-67979404D01* X199307840Y-68355897D01* X199219502Y-68800000D01* X199000498Y-68800000D01* X198912160Y-68355897D01* X198660596Y-67979404D01* X198284103Y-67727840D01* X197952099Y-67661800D01* X197727901Y-67661800D01* X197395897Y-67727840D01* X197019404Y-67979404D01* X196767840Y-68355897D01* X196679502Y-68800000D01* X189979674Y-68800000D01* X189939842Y-68703839D01* X189296161Y-68060158D01* X188455151Y-67711800D01* X187544849Y-67711800D01* X186703839Y-68060158D01* X186060158Y-68703839D01* X185711800Y-69544849D01* X149621937Y-69544849D01* X149659655Y-69507131D01* X149742200Y-69307850D01* X149742200Y-69092150D01* X149659655Y-68892869D01* X149507131Y-68740345D01* X149307850Y-68657800D01* X149092150Y-68657800D01* X148892869Y-68740345D01* X148740345Y-68892869D01* X148657800Y-69092150D01* X148274636Y-69092150D01* X148359655Y-69007131D01* X148442200Y-68807850D01* X148442200Y-68592150D01* X148359655Y-68392869D01* X148207131Y-68240345D01* X148007850Y-68157800D01* X147792150Y-68157800D01* X147777591Y-68163831D01* X147842200Y-68007850D01* X147842200Y-67792150D01* X147759655Y-67592869D01* X147607131Y-67440345D01* X147420887Y-67363200D01* X179828796Y-67363200D01* X179655261Y-67435080D01* X179335080Y-67755261D01* X179161800Y-68173598D01* X179161800Y-68626402D01* X179335080Y-69044739D01* X179655261Y-69364920D01* X180073598Y-69538200D01* X180526402Y-69538200D01* X180944739Y-69364920D01* X181264920Y-69044739D01* X181438200Y-68626402D01* X181438200Y-68173598D01* X181264920Y-67755261D01* X180944739Y-67435080D01* X180771204Y-67363200D01* X182342977Y-67363200D01* X182019404Y-67579404D01* X181767840Y-67955897D01* X181679502Y-68400000D01* X181767840Y-68844103D01* X182019404Y-69220596D01* X182395897Y-69472160D01* X182727901Y-69538200D01* X182952099Y-69538200D01* X183284103Y-69472160D01* X183660596Y-69220596D01* X183912160Y-68844103D01* X184000498Y-68400000D01* X183912160Y-67955897D01* X183660596Y-67579404D01* X183337023Y-67363200D01* X210636801Y-67363200D01* X210636801Y-74415000D01* X189500000Y-74415000D01* X189467472Y-74421470D01* X189439896Y-74439896D01* X189421470Y-74467472D01* X189415000Y-74500000D01* X189415000Y-82616800D01* X189118462Y-82616800D01* X188746068Y-82771050D01* X188461050Y-83056068D01* X188306800Y-83428462D01* X188306800Y-83831538D01* X188404248Y-84066800D01* X188009060Y-84066800D01* X187434518Y-84304783D01* X186994783Y-84744518D01* X186756800Y-85319060D01* X186756800Y-85940940D01* X186994783Y-86515482D01* X187434518Y-86955217D01* X188009060Y-87193200D01* X188630940Y-87193200D01* X189205482Y-86955217D01* X189415000Y-86745699D01* X189415000Y-95000000D01* X189421470Y-95032528D01* X189439896Y-95060104D01* X189467472Y-95078530D01* X189500000Y-95085000D01* X210636800Y-95085000D01* X210636800Y-106636800D01* X101217514Y-106636800D01* X101243200Y-106574789D01* X101243200Y-106358691D01* X101160503Y-106159042D01* X101007698Y-106006237D01* X100808049Y-105923540D01* X100591951Y-105923540D01* X100392302Y-106006237D01* X100239497Y-106159042D01* X100156800Y-106358691D01* X100156800Y-106574789D01* X100182486Y-106636800D01* X98699137Y-106636800D01* X99024103Y-106572160D01* X99400596Y-106320596D01* X99652160Y-105944103D01* X99662533Y-105891951D01* X116456800Y-105891951D01* X116456800Y-106108049D01* X116539497Y-106307698D01* X116692302Y-106460503D01* X116891951Y-106543200D01* X117108049Y-106543200D01* X117307698Y-106460503D01* X117460503Y-106307698D01* X117543200Y-106108049D01* X117543200Y-105892150D01* X129757800Y-105892150D01* X129757800Y-106107850D01* X129840345Y-106307131D01* X129992869Y-106459655D01* X130192150Y-106542200D01* X130407850Y-106542200D01* X130607131Y-106459655D01* X130759655Y-106307131D01* X130842200Y-106107850D01* X130842200Y-105892150D01* X134157800Y-105892150D01* X134157800Y-106107850D01* X134240345Y-106307131D01* X134392869Y-106459655D01* X134592150Y-106542200D01* X134807850Y-106542200D01* X135007131Y-106459655D01* X135159655Y-106307131D01* X135242200Y-106107850D01* X135242200Y-105892150D01* X139557800Y-105892150D01* X139557800Y-106107850D01* X139640345Y-106307131D01* X139792869Y-106459655D01* X139992150Y-106542200D01* X140207850Y-106542200D01* X140407131Y-106459655D01* X140559655Y-106307131D01* X140642200Y-106107850D01* X140642200Y-105892150D01* X151457800Y-105892150D01* X151457800Y-106107850D01* X151540345Y-106307131D01* X151692869Y-106459655D01* X151892150Y-106542200D01* X152107850Y-106542200D01* X152307131Y-106459655D01* X152459655Y-106307131D01* X152542200Y-106107850D01* X152542200Y-105892150D01* X152857800Y-105892150D01* X152857800Y-106107850D01* X152940345Y-106307131D01* X153092869Y-106459655D01* X153292150Y-106542200D01* X153507850Y-106542200D01* X153707131Y-106459655D01* X153859655Y-106307131D01* X153942200Y-106107850D01* X153942200Y-105892150D01* X169357800Y-105892150D01* X169357800Y-106107850D01* X169440345Y-106307131D01* X169592869Y-106459655D01* X169792150Y-106542200D01* X170007850Y-106542200D01* X170207131Y-106459655D01* X170359655Y-106307131D01* X170442200Y-106107850D01* X170442200Y-105892150D01* X170457800Y-105892150D01* X170457800Y-106107850D01* X170540345Y-106307131D01* X170692869Y-106459655D01* X170892150Y-106542200D01* X171107850Y-106542200D01* X171307131Y-106459655D01* X171459655Y-106307131D01* X171542200Y-106107850D01* X171542200Y-105892150D01* X171459655Y-105692869D01* X171307131Y-105540345D01* X171107850Y-105457800D01* X170892150Y-105457800D01* X170692869Y-105540345D01* X170540345Y-105692869D01* X170457800Y-105892150D01* X170442200Y-105892150D01* X170359655Y-105692869D01* X170207131Y-105540345D01* X170007850Y-105457800D01* X169792150Y-105457800D01* X169592869Y-105540345D01* X169440345Y-105692869D01* X169357800Y-105892150D01* X153942200Y-105892150D01* X153859655Y-105692869D01* X153707131Y-105540345D01* X153507850Y-105457800D01* X153292150Y-105457800D01* X153092869Y-105540345D01* X152940345Y-105692869D01* X152857800Y-105892150D01* X152542200Y-105892150D01* X152459655Y-105692869D01* X152307131Y-105540345D01* X152107850Y-105457800D01* X151892150Y-105457800D01* X151692869Y-105540345D01* X151540345Y-105692869D01* X151457800Y-105892150D01* X140642200Y-105892150D01* X140559655Y-105692869D01* X140407131Y-105540345D01* X140207850Y-105457800D01* X139992150Y-105457800D01* X139792869Y-105540345D01* X139640345Y-105692869D01* X139557800Y-105892150D01* X135242200Y-105892150D01* X135159655Y-105692869D01* X135007131Y-105540345D01* X134807850Y-105457800D01* X134592150Y-105457800D01* X134392869Y-105540345D01* X134240345Y-105692869D01* X134157800Y-105892150D01* X130842200Y-105892150D01* X130759655Y-105692869D01* X130607131Y-105540345D01* X130407850Y-105457800D01* X130192150Y-105457800D01* X129992869Y-105540345D01* X129840345Y-105692869D01* X129757800Y-105892150D01* X117543200Y-105892150D01* X117543200Y-105891951D01* X117460503Y-105692302D01* X117307698Y-105539497D01* X117108049Y-105456800D01* X116891951Y-105456800D01* X116692302Y-105539497D01* X116539497Y-105692302D01* X116456800Y-105891951D01* X99662533Y-105891951D01* X99740498Y-105500000D01* X99681273Y-105202254D01* X114208600Y-105202254D01* X114208600Y-105397746D01* X114283411Y-105578356D01* X114421644Y-105716589D01* X114602254Y-105791400D01* X114797746Y-105791400D01* X114978356Y-105716589D01* X115116589Y-105578356D01* X115191400Y-105397746D01* X115191400Y-105202254D01* X115116589Y-105021644D01* X115100041Y-105005096D01* X115207698Y-104960503D01* X115300000Y-104868201D01* X115392302Y-104960503D01* X115591951Y-105043200D01* X115808049Y-105043200D01* X116007698Y-104960503D01* X116105093Y-104863108D01* X117311800Y-104863108D01* X117311800Y-105136892D01* X117416572Y-105389834D01* X117610166Y-105583428D01* X117863108Y-105688200D01* X118136892Y-105688200D01* X118389834Y-105583428D01* X118583428Y-105389834D01* X118688200Y-105136892D01* X118688200Y-104863108D01* X118583428Y-104610166D01* X118389834Y-104416572D01* X118136892Y-104311800D01* X117863108Y-104311800D01* X117610166Y-104416572D01* X117416572Y-104610166D01* X117311800Y-104863108D01* X116105093Y-104863108D01* X116160503Y-104807698D01* X116237024Y-104622960D01* X116402254Y-104691400D01* X116597746Y-104691400D01* X116778356Y-104616589D01* X116916589Y-104478356D01* X116991400Y-104297746D01* X116991400Y-104102254D01* X118408600Y-104102254D01* X118408600Y-104297746D01* X118483411Y-104478356D01* X118621644Y-104616589D01* X118802254Y-104691400D01* X118997746Y-104691400D01* X119178356Y-104616589D01* X119300000Y-104494945D01* X119421644Y-104616589D01* X119602254Y-104691400D01* X119797746Y-104691400D01* X119978356Y-104616589D01* X120116589Y-104478356D01* X120191400Y-104297746D01* X120191400Y-104102254D01* X120808600Y-104102254D01* X120808600Y-104297746D01* X120883411Y-104478356D01* X121021644Y-104616589D01* X121088806Y-104644408D01* X121040345Y-104692869D01* X120957800Y-104892150D01* X120957800Y-105107850D01* X121040345Y-105307131D01* X121192869Y-105459655D01* X121392150Y-105542200D01* X121607850Y-105542200D01* X121807131Y-105459655D01* X121959655Y-105307131D01* X122000000Y-105209730D01* X122040345Y-105307131D01* X122192869Y-105459655D01* X122392150Y-105542200D01* X122607850Y-105542200D01* X122807131Y-105459655D01* X122959655Y-105307131D01* X123042200Y-105107850D01* X123042200Y-104892150D01* X122959655Y-104692869D01* X122807131Y-104540345D01* X122607850Y-104457800D01* X122392150Y-104457800D01* X122192869Y-104540345D01* X122040345Y-104692869D01* X122000000Y-104790270D01* X121959655Y-104692869D01* X121807131Y-104540345D01* X121699275Y-104495670D01* X121716589Y-104478356D01* X121791400Y-104297746D01* X121791400Y-104102254D01* X121787215Y-104092150D01* X127257800Y-104092150D01* X127257800Y-104307850D01* X127340345Y-104507131D01* X127492869Y-104659655D01* X127692150Y-104742200D01* X127819911Y-104742200D01* X127757800Y-104892150D01* X127757800Y-105107850D01* X127840345Y-105307131D01* X127992869Y-105459655D01* X128192150Y-105542200D01* X128407850Y-105542200D01* X128607131Y-105459655D01* X128759655Y-105307131D01* X128842200Y-105107850D01* X128842200Y-104892150D01* X139057802Y-104892150D01* X139057802Y-105107850D01* X139140347Y-105307131D01* X139292871Y-105459655D01* X139492152Y-105542200D01* X139707852Y-105542200D01* X139907133Y-105459655D01* X140059657Y-105307131D01* X140142202Y-105107850D01* X140142202Y-104892150D01* X140059657Y-104692869D01* X139958938Y-104592150D01* X151457800Y-104592150D01* X151457800Y-104807850D01* X151540345Y-105007131D01* X151692869Y-105159655D01* X151892150Y-105242200D01* X152107850Y-105242200D01* X152307131Y-105159655D01* X152459655Y-105007131D01* X152542200Y-104807850D01* X152542200Y-104592150D01* X152857800Y-104592150D01* X152857800Y-104807850D01* X152940345Y-105007131D01* X153092869Y-105159655D01* X153292150Y-105242200D01* X153507850Y-105242200D01* X153707131Y-105159655D01* X153859655Y-105007131D01* X153942200Y-104807850D01* X153942200Y-104592150D01* X153900779Y-104492150D01* X157957800Y-104492150D01* X157957800Y-104707850D01* X158040345Y-104907131D01* X158192869Y-105059655D01* X158392150Y-105142200D01* X158607850Y-105142200D01* X158807131Y-105059655D01* X158959655Y-104907131D01* X159042200Y-104707850D01* X159042200Y-104492150D01* X159457800Y-104492150D01* X159457800Y-104707850D01* X159540345Y-104907131D01* X159692869Y-105059655D01* X159892150Y-105142200D01* X160107850Y-105142200D01* X160307131Y-105059655D01* X160459655Y-104907131D01* X160542200Y-104707850D01* X160542200Y-104492150D01* X160459655Y-104292869D01* X160307131Y-104140345D01* X160107850Y-104057800D01* X159892150Y-104057800D01* X159692869Y-104140345D01* X159540345Y-104292869D01* X159457800Y-104492150D01* X159042200Y-104492150D01* X158959655Y-104292869D01* X158807131Y-104140345D01* X158607850Y-104057800D01* X158392150Y-104057800D01* X158192869Y-104140345D01* X158040345Y-104292869D01* X157957800Y-104492150D01* X153900779Y-104492150D01* X153859655Y-104392869D01* X153707131Y-104240345D01* X153507850Y-104157800D01* X153292150Y-104157800D01* X153092869Y-104240345D01* X152940345Y-104392869D01* X152857800Y-104592150D01* X152542200Y-104592150D01* X152459655Y-104392869D01* X152307131Y-104240345D01* X152107850Y-104157800D01* X151892150Y-104157800D01* X151692869Y-104240345D01* X151540345Y-104392869D01* X151457800Y-104592150D01* X139958938Y-104592150D01* X139907133Y-104540345D01* X139707852Y-104457800D01* X139492152Y-104457800D01* X139292871Y-104540345D01* X139140347Y-104692869D01* X139057802Y-104892150D01* X128842200Y-104892150D01* X128759655Y-104692869D01* X128607131Y-104540345D01* X128407850Y-104457800D01* X128280089Y-104457800D01* X128342200Y-104307850D01* X128342200Y-104092150D01* X128259655Y-103892869D01* X128107131Y-103740345D01* X127907850Y-103657800D01* X127692150Y-103657800D01* X127492869Y-103740345D01* X127340345Y-103892869D01* X127257800Y-104092150D01* X121787215Y-104092150D01* X121716589Y-103921644D01* X121578356Y-103783411D01* X121397746Y-103708600D01* X121202254Y-103708600D01* X121021644Y-103783411D01* X120883411Y-103921644D01* X120808600Y-104102254D01* X120191400Y-104102254D01* X120116589Y-103921644D01* X119978356Y-103783411D01* X119797746Y-103708600D01* X119602254Y-103708600D01* X119421644Y-103783411D01* X119300000Y-103905055D01* X119178356Y-103783411D01* X118997746Y-103708600D01* X118802254Y-103708600D01* X118621644Y-103783411D01* X118483411Y-103921644D01* X118408600Y-104102254D01* X116991400Y-104102254D01* X116916589Y-103921644D01* X116778356Y-103783411D01* X116597746Y-103708600D01* X116402254Y-103708600D01* X116221644Y-103783411D01* X116083411Y-103921644D01* X116026717Y-104058516D01* X116007698Y-104039497D01* X115808049Y-103956800D01* X115591951Y-103956800D01* X115392302Y-104039497D01* X115300000Y-104131799D01* X115207698Y-104039497D01* X115008049Y-103956800D01* X114791951Y-103956800D01* X114592302Y-104039497D01* X114439497Y-104192302D01* X114356800Y-104391951D01* X114356800Y-104608049D01* X114439497Y-104807698D01* X114487805Y-104856006D01* X114421644Y-104883411D01* X114283411Y-105021644D01* X114208600Y-105202254D01* X99681273Y-105202254D01* X99652160Y-105055897D01* X99400596Y-104679404D01* X99024103Y-104427840D01* X98692099Y-104361800D01* X98467901Y-104361800D01* X98135897Y-104427840D01* X97759404Y-104679404D01* X97507840Y-105055897D01* X97419502Y-105500000D01* X97507840Y-105944103D01* X97759404Y-106320596D01* X98135897Y-106572160D01* X98460863Y-106636800D01* X96159137Y-106636800D01* X96484103Y-106572160D01* X96860596Y-106320596D01* X97112160Y-105944103D01* X97200498Y-105500000D01* X97112160Y-105055897D01* X96860596Y-104679404D01* X96484103Y-104427840D01* X96152099Y-104361800D01* X95927901Y-104361800D01* X95595897Y-104427840D01* X95219404Y-104679404D01* X94967840Y-105055897D01* X94879502Y-105500000D01* X94967840Y-105944103D01* X95219404Y-106320596D01* X95595897Y-106572160D01* X95920863Y-106636800D01* X93729782Y-106636800D01* X94144739Y-106464920D01* X94464920Y-106144739D01* X94638200Y-105726402D01* X94638200Y-105273598D01* X94464920Y-104855261D01* X94144739Y-104535080D01* X93726402Y-104361800D01* X93273598Y-104361800D01* X92855261Y-104535080D01* X92535080Y-104855261D01* X92361800Y-105273598D01* X92361800Y-105726402D01* X92535080Y-106144739D01* X92855261Y-106464920D01* X93270218Y-106636800D01* X66363200Y-106636800D01* X66363200Y-103544849D01* X66711800Y-103544849D01* X66711800Y-104455151D01* X67060158Y-105296161D01* X67703839Y-105939842D01* X68544849Y-106288200D01* X69455151Y-106288200D01* X70296161Y-105939842D01* X70939842Y-105296161D01* X70979673Y-105200000D01* X75279502Y-105200000D01* X75367840Y-105644103D01* X75619404Y-106020596D01* X75995897Y-106272160D01* X76327901Y-106338200D01* X76552099Y-106338200D01* X76884103Y-106272160D01* X77260596Y-106020596D01* X77512160Y-105644103D01* X77600498Y-105200000D01* X77819502Y-105200000D01* X77907840Y-105644103D01* X78159404Y-106020596D01* X78535897Y-106272160D01* X78867901Y-106338200D01* X79092099Y-106338200D01* X79424103Y-106272160D01* X79800596Y-106020596D01* X80052160Y-105644103D01* X80140498Y-105200000D01* X80359502Y-105200000D01* X80447840Y-105644103D01* X80699404Y-106020596D01* X81075897Y-106272160D01* X81407901Y-106338200D01* X81632099Y-106338200D01* X81964103Y-106272160D01* X82340596Y-106020596D01* X82592160Y-105644103D01* X82680498Y-105200000D01* X82899502Y-105200000D01* X82987840Y-105644103D01* X83239404Y-106020596D01* X83615897Y-106272160D01* X83947901Y-106338200D01* X84172099Y-106338200D01* X84504103Y-106272160D01* X84880596Y-106020596D01* X85132160Y-105644103D01* X85220498Y-105200000D01* X85132160Y-104755897D01* X84880596Y-104379404D01* X84504103Y-104127840D01* X84172099Y-104061800D01* X83947901Y-104061800D01* X83615897Y-104127840D01* X83239404Y-104379404D01* X82987840Y-104755897D01* X82899502Y-105200000D01* X82680498Y-105200000D01* X82592160Y-104755897D01* X82340596Y-104379404D01* X81964103Y-104127840D01* X81632099Y-104061800D01* X81407901Y-104061800D01* X81075897Y-104127840D01* X80699404Y-104379404D01* X80447840Y-104755897D01* X80359502Y-105200000D01* X80140498Y-105200000D01* X80052160Y-104755897D01* X79800596Y-104379404D01* X79424103Y-104127840D01* X79092099Y-104061800D01* X78867901Y-104061800D01* X78535897Y-104127840D01* X78159404Y-104379404D01* X77907840Y-104755897D01* X77819502Y-105200000D01* X77600498Y-105200000D01* X77512160Y-104755897D01* X77260596Y-104379404D01* X76884103Y-104127840D01* X76552099Y-104061800D01* X76327901Y-104061800D01* X75995897Y-104127840D01* X75619404Y-104379404D01* X75367840Y-104755897D01* X75279502Y-105200000D01* X70979673Y-105200000D01* X71288200Y-104455151D01* X71288200Y-103544849D01* X86711800Y-103544849D01* X86711800Y-104455151D01* X87060158Y-105296161D01* X87703839Y-105939842D01* X88544849Y-106288200D01* X89455151Y-106288200D01* X90296161Y-105939842D01* X90939842Y-105296161D01* X91288200Y-104455151D01* X91288200Y-103544849D01* X91045948Y-102960000D01* X92339502Y-102960000D01* X92427840Y-103404103D01* X92679404Y-103780596D01* X93055897Y-104032160D01* X93387901Y-104098200D01* X93612099Y-104098200D01* X93944103Y-104032160D01* X94320596Y-103780596D01* X94572160Y-103404103D01* X94660498Y-102960000D01* X94879502Y-102960000D01* X94967840Y-103404103D01* X95219404Y-103780596D01* X95595897Y-104032160D01* X95927901Y-104098200D01* X96152099Y-104098200D01* X96484103Y-104032160D01* X96860596Y-103780596D01* X97112160Y-103404103D01* X97200498Y-102960000D01* X97419502Y-102960000D01* X97507840Y-103404103D01* X97759404Y-103780596D01* X98135897Y-104032160D01* X98467901Y-104098200D01* X98692099Y-104098200D01* X99024103Y-104032160D01* X99233941Y-103891951D01* X100991069Y-103891951D01* X100991069Y-104108049D01* X101073766Y-104307698D01* X101226571Y-104460503D01* X101426220Y-104543200D01* X101642318Y-104543200D01* X101841967Y-104460503D01* X101994772Y-104307698D01* X102077469Y-104108049D01* X102077469Y-104102254D01* X104008600Y-104102254D01* X104008600Y-104297746D01* X104083411Y-104478356D01* X104221644Y-104616589D01* X104402254Y-104691400D01* X104597746Y-104691400D01* X104778356Y-104616589D01* X104900000Y-104494945D01* X105021644Y-104616589D01* X105202254Y-104691400D01* X105397746Y-104691400D01* X105578356Y-104616589D01* X105700000Y-104494945D01* X105821644Y-104616589D01* X106002254Y-104691400D01* X106197746Y-104691400D01* X106378356Y-104616589D01* X106464080Y-104530866D01* X106592869Y-104659655D01* X106792150Y-104742200D01* X107007850Y-104742200D01* X107207131Y-104659655D01* X107299293Y-104567494D01* X107392302Y-104660503D01* X107591951Y-104743200D01* X107808049Y-104743200D01* X108007698Y-104660503D01* X108100708Y-104567494D01* X108192869Y-104659655D01* X108392150Y-104742200D01* X108607850Y-104742200D01* X108807131Y-104659655D01* X108959655Y-104507131D01* X109042200Y-104307850D01* X109042200Y-104102254D01* X110408600Y-104102254D01* X110408600Y-104297746D01* X110483411Y-104478356D01* X110621644Y-104616589D01* X110802254Y-104691400D01* X110997746Y-104691400D01* X111178356Y-104616589D01* X111300000Y-104494945D01* X111421644Y-104616589D01* X111602254Y-104691400D01* X111797746Y-104691400D01* X111978356Y-104616589D01* X112116589Y-104478356D01* X112191400Y-104297746D01* X112191400Y-104102254D01* X112116589Y-103921644D01* X111978356Y-103783411D01* X111797746Y-103708600D01* X111602254Y-103708600D01* X111421644Y-103783411D01* X111300000Y-103905055D01* X111178356Y-103783411D01* X110997746Y-103708600D01* X110802254Y-103708600D01* X110621644Y-103783411D01* X110483411Y-103921644D01* X110408600Y-104102254D01* X109042200Y-104102254D01* X109042200Y-104092150D01* X108959655Y-103892869D01* X108807131Y-103740345D01* X108607850Y-103657800D01* X108392150Y-103657800D01* X108192869Y-103740345D01* X108100708Y-103832507D01* X108007698Y-103739497D01* X107808049Y-103656800D01* X107591951Y-103656800D01* X107392302Y-103739497D01* X107299293Y-103832507D01* X107207131Y-103740345D01* X107007850Y-103657800D01* X106792150Y-103657800D01* X106592869Y-103740345D01* X106464080Y-103869135D01* X106378356Y-103783411D01* X106197746Y-103708600D01* X106002254Y-103708600D01* X105821644Y-103783411D01* X105700000Y-103905055D01* X105578356Y-103783411D01* X105397746Y-103708600D01* X105202254Y-103708600D01* X105021644Y-103783411D01* X104900000Y-103905055D01* X104778356Y-103783411D01* X104597746Y-103708600D01* X104402254Y-103708600D01* X104221644Y-103783411D01* X104083411Y-103921644D01* X104008600Y-104102254D01* X102077469Y-104102254D01* X102077469Y-103891951D01* X101994772Y-103692302D01* X101841967Y-103539497D01* X101642318Y-103456800D01* X101426220Y-103456800D01* X101226571Y-103539497D01* X101073766Y-103692302D01* X100991069Y-103891951D01* X99233941Y-103891951D01* X99400596Y-103780596D01* X99652160Y-103404103D01* X99740498Y-102960000D01* X99652160Y-102515897D01* X99400596Y-102139404D01* X99024103Y-101887840D01* X98692099Y-101821800D01* X98467901Y-101821800D01* X98135897Y-101887840D01* X97759404Y-102139404D01* X97507840Y-102515897D01* X97419502Y-102960000D01* X97200498Y-102960000D01* X97112160Y-102515897D01* X96860596Y-102139404D01* X96484103Y-101887840D01* X96152099Y-101821800D01* X95927901Y-101821800D01* X95595897Y-101887840D01* X95219404Y-102139404D01* X94967840Y-102515897D01* X94879502Y-102960000D01* X94660498Y-102960000D01* X94572160Y-102515897D01* X94320596Y-102139404D01* X93944103Y-101887840D01* X93612099Y-101821800D01* X93387901Y-101821800D01* X93055897Y-101887840D01* X92679404Y-102139404D01* X92427840Y-102515897D01* X92339502Y-102960000D01* X91045948Y-102960000D01* X90939842Y-102703839D01* X90296161Y-102060158D01* X89645164Y-101790506D01* X101596800Y-101790506D01* X101596800Y-102209494D01* X101757140Y-102596590D01* X102053410Y-102892860D01* X102440506Y-103053200D01* X102859494Y-103053200D01* X103246590Y-102892860D01* X103542860Y-102596590D01* X103703200Y-102209494D01* X103703200Y-101790506D01* X125296800Y-101790506D01* X125296800Y-102209494D01* X125457140Y-102596590D01* X125753410Y-102892860D01* X126140506Y-103053200D01* X126559494Y-103053200D01* X126946590Y-102892860D01* X127242860Y-102596590D01* X127403200Y-102209494D01* X127403200Y-101790506D01* X127242860Y-101403410D01* X126946590Y-101107140D01* X126559494Y-100946800D01* X126140506Y-100946800D01* X125753410Y-101107140D01* X125457140Y-101403410D01* X125296800Y-101790506D01* X103703200Y-101790506D01* X103542860Y-101403410D01* X103246590Y-101107140D01* X102859494Y-100946800D01* X102440506Y-100946800D01* X102053410Y-101107140D01* X101757140Y-101403410D01* X101596800Y-101790506D01* X89645164Y-101790506D01* X89455151Y-101711800D01* X88544849Y-101711800D01* X87703839Y-102060158D01* X87060158Y-102703839D01* X86711800Y-103544849D01* X71288200Y-103544849D01* X70939842Y-102703839D01* X70296161Y-102060158D01* X69455151Y-101711800D01* X68544849Y-101711800D01* X67703839Y-102060158D01* X67060158Y-102703839D01* X66711800Y-103544849D01* X66363200Y-103544849D01* X66363200Y-100391951D01* X92156800Y-100391951D01* X92156800Y-100608049D01* X92239497Y-100807698D01* X92392302Y-100960503D01* X92591951Y-101043200D01* X92808049Y-101043200D01* X93007698Y-100960503D01* X93160503Y-100807698D01* X93208446Y-100691951D01* X96456800Y-100691951D01* X96456800Y-100908049D01* X96539497Y-101107698D01* X96692302Y-101260503D01* X96891951Y-101343200D01* X97108049Y-101343200D01* X97307698Y-101260503D01* X97460503Y-101107698D01* X97543200Y-100908049D01* X97543200Y-100892150D01* X129857800Y-100892150D01* X129857800Y-101107850D01* X129940345Y-101307131D01* X130083214Y-101450000D01* X129940345Y-101592869D01* X129857800Y-101792150D01* X129857800Y-102007850D01* X129940345Y-102207131D01* X130092869Y-102359655D01* X130220636Y-102412578D01* X130140345Y-102492869D01* X130057800Y-102692150D01* X130057800Y-102907850D01* X130140345Y-103107131D01* X130292869Y-103259655D01* X130349925Y-103283289D01* X130240345Y-103392869D01* X130157800Y-103592150D01* X130157800Y-103807850D01* X130240345Y-104007131D01* X130392869Y-104159655D01* X130592150Y-104242200D01* X130807850Y-104242200D01* X131007131Y-104159655D01* X131074636Y-104092150D01* X132557800Y-104092150D01* X132557800Y-104307850D01* X132640345Y-104507131D01* X132792869Y-104659655D01* X132992150Y-104742200D01* X133207850Y-104742200D01* X133407131Y-104659655D01* X133559655Y-104507131D01* X133642200Y-104307850D01* X133642200Y-104092150D01* X133559655Y-103892869D01* X133407131Y-103740345D01* X133207850Y-103657800D01* X132992150Y-103657800D01* X132792869Y-103740345D01* X132640345Y-103892869D01* X132557800Y-104092150D01* X131074636Y-104092150D01* X131159655Y-104007131D01* X131242200Y-103807850D01* X131242200Y-103592150D01* X131159655Y-103392869D01* X131007131Y-103240345D01* X130950075Y-103216711D01* X131059655Y-103107131D01* X131065942Y-103091951D01* X137856800Y-103091951D01* X137856800Y-103308049D01* X137939497Y-103507698D01* X138092302Y-103660503D01* X138291951Y-103743200D01* X138508049Y-103743200D01* X138707698Y-103660503D01* X138860503Y-103507698D01* X138943200Y-103308049D01* X138943200Y-103292150D01* X154057800Y-103292150D01* X154057800Y-103507850D01* X154140345Y-103707131D01* X154292869Y-103859655D01* X154492150Y-103942200D01* X154707850Y-103942200D01* X154907131Y-103859655D01* X155059655Y-103707131D01* X155142200Y-103507850D01* X155142200Y-103292150D01* X157957800Y-103292150D01* X157957800Y-103507850D01* X158040345Y-103707131D01* X158192869Y-103859655D01* X158392150Y-103942200D01* X158607850Y-103942200D01* X158807131Y-103859655D01* X158959655Y-103707131D01* X159042200Y-103507850D01* X159042200Y-103292150D01* X158959655Y-103092869D01* X158858936Y-102992150D01* X160957800Y-102992150D01* X160957800Y-103207850D01* X161040345Y-103407131D01* X161192869Y-103559655D01* X161249925Y-103583289D01* X161240345Y-103592869D01* X161157800Y-103792150D01* X161157800Y-104007850D01* X161240345Y-104207131D01* X161392869Y-104359655D01* X161592150Y-104442200D01* X161807850Y-104442200D01* X162007131Y-104359655D01* X162016711Y-104350075D01* X162040345Y-104407131D01* X162192869Y-104559655D01* X162392150Y-104642200D01* X162607850Y-104642200D01* X162807131Y-104559655D01* X162874636Y-104492150D01* X169357800Y-104492150D01* X169357800Y-104707850D01* X169440345Y-104907131D01* X169592869Y-105059655D01* X169792150Y-105142200D01* X170007850Y-105142200D01* X170207131Y-105059655D01* X170359655Y-104907131D01* X170442200Y-104707850D01* X170442200Y-104492150D01* X170457800Y-104492150D01* X170457800Y-104707850D01* X170540345Y-104907131D01* X170692869Y-105059655D01* X170892150Y-105142200D01* X171107850Y-105142200D01* X171307131Y-105059655D01* X171459655Y-104907131D01* X171542200Y-104707850D01* X171542200Y-104492150D01* X171459655Y-104292869D01* X171307131Y-104140345D01* X171107850Y-104057800D01* X170892150Y-104057800D01* X170692869Y-104140345D01* X170540345Y-104292869D01* X170457800Y-104492150D01* X170442200Y-104492150D01* X170359655Y-104292869D01* X170207131Y-104140345D01* X170007850Y-104057800D01* X169792150Y-104057800D01* X169592869Y-104140345D01* X169440345Y-104292869D01* X169357800Y-104492150D01* X162874636Y-104492150D01* X162959655Y-104407131D01* X163042200Y-104207850D01* X163042200Y-103992150D01* X162959655Y-103792869D01* X162807131Y-103640345D01* X162607850Y-103557800D01* X162392150Y-103557800D01* X162192869Y-103640345D01* X162183289Y-103649925D01* X162159655Y-103592869D01* X162007131Y-103440345D01* X161950075Y-103416711D01* X161959655Y-103407131D01* X162042200Y-103207850D01* X162042200Y-102992150D01* X161959655Y-102792869D01* X161807131Y-102640345D01* X161607850Y-102557800D01* X161392150Y-102557800D01* X161192869Y-102640345D01* X161040345Y-102792869D01* X160957800Y-102992150D01* X158858936Y-102992150D01* X158807131Y-102940345D01* X158607850Y-102857800D01* X158392150Y-102857800D01* X158192869Y-102940345D01* X158040345Y-103092869D01* X157957800Y-103292150D01* X155142200Y-103292150D01* X155059655Y-103092869D01* X154907131Y-102940345D01* X154707850Y-102857800D01* X154492150Y-102857800D01* X154292869Y-102940345D01* X154140345Y-103092869D01* X154057800Y-103292150D01* X138943200Y-103292150D01* X138943200Y-103091951D01* X138860503Y-102892302D01* X138707698Y-102739497D01* X138508049Y-102656800D01* X138291951Y-102656800D01* X138092302Y-102739497D01* X137939497Y-102892302D01* X137856800Y-103091951D01* X131065942Y-103091951D01* X131142200Y-102907850D01* X131142200Y-102692150D01* X131059655Y-102492869D01* X130907131Y-102340345D01* X130790298Y-102291951D01* X139456800Y-102291951D01* X139456800Y-102508049D01* X139539497Y-102707698D01* X139692302Y-102860503D01* X139891951Y-102943200D01* X140108049Y-102943200D01* X140307698Y-102860503D01* X140460503Y-102707698D01* X140543200Y-102508049D01* X140543200Y-102492150D01* X168057800Y-102492150D01* X168057800Y-102707850D01* X168140345Y-102907131D01* X168292869Y-103059655D01* X168492150Y-103142200D01* X168707850Y-103142200D01* X168907131Y-103059655D01* X168974636Y-102992150D01* X171457800Y-102992150D01* X171457800Y-103207850D01* X171540345Y-103407131D01* X171692869Y-103559655D01* X171892150Y-103642200D01* X172107850Y-103642200D01* X172307131Y-103559655D01* X172321937Y-103544849D01* X185711800Y-103544849D01* X185711800Y-104455151D01* X186060158Y-105296161D01* X186703839Y-105939842D01* X187544849Y-106288200D01* X188455151Y-106288200D01* X189296161Y-105939842D01* X189939842Y-105296161D01* X190288200Y-104455151D01* X190288200Y-103544849D01* X205711800Y-103544849D01* X205711800Y-104455151D01* X206060158Y-105296161D01* X206703839Y-105939842D01* X207544849Y-106288200D01* X208455151Y-106288200D01* X209296161Y-105939842D01* X209939842Y-105296161D01* X210288200Y-104455151D01* X210288200Y-103544849D01* X209939842Y-102703839D01* X209296161Y-102060158D01* X208455151Y-101711800D01* X207544849Y-101711800D01* X206703839Y-102060158D01* X206060158Y-102703839D01* X205711800Y-103544849D01* X190288200Y-103544849D01* X189939842Y-102703839D01* X189296161Y-102060158D01* X188455151Y-101711800D01* X187544849Y-101711800D01* X186703839Y-102060158D01* X186060158Y-102703839D01* X185711800Y-103544849D01* X172321937Y-103544849D01* X172459655Y-103407131D01* X172542200Y-103207850D01* X172542200Y-102992150D01* X172459655Y-102792869D01* X172307131Y-102640345D01* X172107850Y-102557800D01* X171892150Y-102557800D01* X171692869Y-102640345D01* X171540345Y-102792869D01* X171457800Y-102992150D01* X168974636Y-102992150D01* X169059655Y-102907131D01* X169142200Y-102707850D01* X169142200Y-102492150D01* X169100697Y-102391951D01* X178556800Y-102391951D01* X178556800Y-102608049D01* X178639497Y-102807698D01* X178792302Y-102960503D01* X178991951Y-103043200D01* X179208049Y-103043200D01* X179407698Y-102960503D01* X179560503Y-102807698D01* X179643200Y-102608049D01* X179643200Y-102391951D01* X179560503Y-102192302D01* X179407698Y-102039497D01* X179208049Y-101956800D01* X178991951Y-101956800D01* X178792302Y-102039497D01* X178639497Y-102192302D01* X178556800Y-102391951D01* X169100697Y-102391951D01* X169059655Y-102292869D01* X168907131Y-102140345D01* X168707850Y-102057800D01* X168492150Y-102057800D01* X168292869Y-102140345D01* X168140345Y-102292869D01* X168057800Y-102492150D01* X140543200Y-102492150D01* X140543200Y-102291951D01* X140460503Y-102092302D01* X140307698Y-101939497D01* X140108049Y-101856800D01* X139891951Y-101856800D01* X139692302Y-101939497D01* X139539497Y-102092302D01* X139456800Y-102291951D01* X130790298Y-102291951D01* X130779364Y-102287422D01* X130859655Y-102207131D01* X130942200Y-102007850D01* X130942200Y-101792150D01* X130859655Y-101592869D01* X130716786Y-101450000D01* X130859655Y-101307131D01* X130942200Y-101107850D01* X130942200Y-101091951D01* X137056800Y-101091951D01* X137056800Y-101308049D01* X137139497Y-101507698D01* X137292302Y-101660503D01* X137491951Y-101743200D01* X137708049Y-101743200D01* X137907698Y-101660503D01* X138060503Y-101507698D01* X138100541Y-101411037D01* X138140345Y-101507131D01* X138292869Y-101659655D01* X138492150Y-101742200D01* X138707850Y-101742200D01* X138907131Y-101659655D01* X139059655Y-101507131D01* X139142200Y-101307850D01* X139142200Y-101192150D01* X142457800Y-101192150D01* X142457800Y-101407850D01* X142540345Y-101607131D01* X142692869Y-101759655D01* X142892150Y-101842200D01* X143107850Y-101842200D01* X143307131Y-101759655D01* X143459655Y-101607131D01* X143542200Y-101407850D01* X143542200Y-101192150D01* X143459655Y-100992869D01* X143307131Y-100840345D01* X143107850Y-100757800D01* X142892150Y-100757800D01* X142692869Y-100840345D01* X142540345Y-100992869D01* X142457800Y-101192150D01* X139142200Y-101192150D01* X139142200Y-101092150D01* X139059655Y-100892869D01* X138907131Y-100740345D01* X138707850Y-100657800D01* X138492150Y-100657800D01* X138292869Y-100740345D01* X138140345Y-100892869D01* X138100541Y-100988963D01* X138060503Y-100892302D01* X137907698Y-100739497D01* X137708049Y-100656800D01* X137491951Y-100656800D01* X137292302Y-100739497D01* X137139497Y-100892302D01* X137056800Y-101091951D01* X130942200Y-101091951D01* X130942200Y-100892150D01* X130859655Y-100692869D01* X130707131Y-100540345D01* X130507850Y-100457800D01* X130292150Y-100457800D01* X130092869Y-100540345D01* X129940345Y-100692869D01* X129857800Y-100892150D01* X97543200Y-100892150D01* X97543200Y-100691951D01* X97460503Y-100492302D01* X97307698Y-100339497D01* X97108049Y-100256800D01* X96891951Y-100256800D01* X96692302Y-100339497D01* X96539497Y-100492302D01* X96456800Y-100691951D01* X93208446Y-100691951D01* X93243200Y-100608049D01* X93243200Y-100391951D01* X93160503Y-100192302D01* X93007698Y-100039497D01* X92808049Y-99956800D01* X92591951Y-99956800D01* X92392302Y-100039497D01* X92239497Y-100192302D01* X92156800Y-100391951D01* X66363200Y-100391951D01* X66363200Y-99457598D01* X77184352Y-99457598D01* X77184352Y-99673298D01* X77266897Y-99872579D01* X77419421Y-100025103D01* X77618702Y-100107648D01* X77834402Y-100107648D01* X78033683Y-100025103D01* X78186207Y-99872579D01* X78268752Y-99673298D01* X78268752Y-99604752D01* X78337298Y-99604752D01* X78536579Y-99522207D01* X78689103Y-99369683D01* X78771648Y-99170402D01* X78771648Y-99092150D01* X95557800Y-99092150D01* X95557800Y-99307850D01* X95640345Y-99507131D01* X95792869Y-99659655D01* X95992150Y-99742200D01* X96207850Y-99742200D01* X96407131Y-99659655D01* X96559655Y-99507131D01* X96642200Y-99307850D01* X96642200Y-99092150D01* X96559655Y-98892869D01* X96407131Y-98740345D01* X96290779Y-98692150D01* X100257794Y-98692150D01* X100257794Y-98907850D01* X100340339Y-99107131D01* X100492863Y-99259655D01* X100692144Y-99342200D01* X100907844Y-99342200D01* X101107125Y-99259655D01* X101259649Y-99107131D01* X101342194Y-98907850D01* X101342194Y-98702254D01* X104008600Y-98702254D01* X104008600Y-98897746D01* X104083411Y-99078356D01* X104221644Y-99216589D01* X104402254Y-99291400D01* X104597746Y-99291400D01* X104778356Y-99216589D01* X104900000Y-99094945D01* X105021644Y-99216589D01* X105202254Y-99291400D01* X105397746Y-99291400D01* X105578356Y-99216589D01* X105700000Y-99094945D01* X105821644Y-99216589D01* X106002254Y-99291400D01* X106197746Y-99291400D01* X106378356Y-99216589D01* X106500000Y-99094945D01* X106621644Y-99216589D01* X106802254Y-99291400D01* X106997746Y-99291400D01* X107178356Y-99216589D01* X107300000Y-99094945D01* X107421644Y-99216589D01* X107602254Y-99291400D01* X107797746Y-99291400D01* X107978356Y-99216589D01* X108116589Y-99078356D01* X108191400Y-98897746D01* X108191400Y-98702254D01* X109608600Y-98702254D01* X109608600Y-98897746D01* X109683411Y-99078356D01* X109821644Y-99216589D01* X110002254Y-99291400D01* X110197746Y-99291400D01* X110378356Y-99216589D01* X110500000Y-99094945D01* X110621644Y-99216589D01* X110802254Y-99291400D01* X110997746Y-99291400D01* X111178356Y-99216589D01* X111300000Y-99094945D01* X111421644Y-99216589D01* X111602254Y-99291400D01* X111797746Y-99291400D01* X111978356Y-99216589D01* X112100000Y-99094945D01* X112221644Y-99216589D01* X112402254Y-99291400D01* X112597746Y-99291400D01* X112778356Y-99216589D01* X112916589Y-99078356D01* X112991400Y-98897746D01* X112991400Y-98702254D01* X114408600Y-98702254D01* X114408600Y-98897746D01* X114483411Y-99078356D01* X114621644Y-99216589D01* X114802254Y-99291400D01* X114997746Y-99291400D01* X115178356Y-99216589D01* X115300000Y-99094945D01* X115421644Y-99216589D01* X115602254Y-99291400D01* X115797746Y-99291400D01* X115978356Y-99216589D01* X116100000Y-99094945D01* X116221644Y-99216589D01* X116402254Y-99291400D01* X116597746Y-99291400D01* X116778356Y-99216589D01* X116900000Y-99094945D01* X117021644Y-99216589D01* X117202254Y-99291400D01* X117397746Y-99291400D01* X117578356Y-99216589D01* X117716589Y-99078356D01* X117791400Y-98897746D01* X117791400Y-98702254D01* X119208600Y-98702254D01* X119208600Y-98897746D01* X119283411Y-99078356D01* X119421644Y-99216589D01* X119602254Y-99291400D01* X119797746Y-99291400D01* X119978356Y-99216589D01* X120100000Y-99094945D01* X120221644Y-99216589D01* X120402254Y-99291400D01* X120597746Y-99291400D01* X120778356Y-99216589D01* X120900000Y-99094945D01* X121021644Y-99216589D01* X121202254Y-99291400D01* X121397746Y-99291400D01* X121578356Y-99216589D01* X121700000Y-99094945D01* X121821644Y-99216589D01* X122002254Y-99291400D01* X122197746Y-99291400D01* X122378356Y-99216589D01* X122516589Y-99078356D01* X122591400Y-98897746D01* X122591400Y-98702254D01* X124008600Y-98702254D01* X124008600Y-98897746D01* X124083411Y-99078356D01* X124221644Y-99216589D01* X124402254Y-99291400D01* X124597746Y-99291400D01* X124778356Y-99216589D01* X124916589Y-99078356D01* X124991400Y-98897746D01* X124991400Y-98702254D01* X124916589Y-98521644D01* X124778356Y-98383411D01* X124597746Y-98308600D01* X124402254Y-98308600D01* X124221644Y-98383411D01* X124083411Y-98521644D01* X124008600Y-98702254D01* X122591400Y-98702254D01* X122516589Y-98521644D01* X122378356Y-98383411D01* X122197746Y-98308600D01* X122002254Y-98308600D01* X121821644Y-98383411D01* X121700000Y-98505055D01* X121578356Y-98383411D01* X121397746Y-98308600D01* X121202254Y-98308600D01* X121021644Y-98383411D01* X120900000Y-98505055D01* X120778356Y-98383411D01* X120597746Y-98308600D01* X120402254Y-98308600D01* X120221644Y-98383411D01* X120100000Y-98505055D01* X119978356Y-98383411D01* X119797746Y-98308600D01* X119602254Y-98308600D01* X119421644Y-98383411D01* X119283411Y-98521644D01* X119208600Y-98702254D01* X117791400Y-98702254D01* X117716589Y-98521644D01* X117578356Y-98383411D01* X117397746Y-98308600D01* X117202254Y-98308600D01* X117021644Y-98383411D01* X116900000Y-98505055D01* X116778356Y-98383411D01* X116597746Y-98308600D01* X116402254Y-98308600D01* X116221644Y-98383411D01* X116100000Y-98505055D01* X115978356Y-98383411D01* X115797746Y-98308600D01* X115602254Y-98308600D01* X115421644Y-98383411D01* X115300000Y-98505055D01* X115178356Y-98383411D01* X114997746Y-98308600D01* X114802254Y-98308600D01* X114621644Y-98383411D01* X114483411Y-98521644D01* X114408600Y-98702254D01* X112991400Y-98702254D01* X112916589Y-98521644D01* X112778356Y-98383411D01* X112597746Y-98308600D01* X112402254Y-98308600D01* X112221644Y-98383411D01* X112100000Y-98505055D01* X111978356Y-98383411D01* X111797746Y-98308600D01* X111602254Y-98308600D01* X111421644Y-98383411D01* X111300000Y-98505055D01* X111178356Y-98383411D01* X110997746Y-98308600D01* X110802254Y-98308600D01* X110621644Y-98383411D01* X110500000Y-98505055D01* X110378356Y-98383411D01* X110197746Y-98308600D01* X110002254Y-98308600D01* X109821644Y-98383411D01* X109683411Y-98521644D01* X109608600Y-98702254D01* X108191400Y-98702254D01* X108116589Y-98521644D01* X107978356Y-98383411D01* X107797746Y-98308600D01* X107602254Y-98308600D01* X107421644Y-98383411D01* X107300000Y-98505055D01* X107178356Y-98383411D01* X106997746Y-98308600D01* X106802254Y-98308600D01* X106621644Y-98383411D01* X106500000Y-98505055D01* X106378356Y-98383411D01* X106197746Y-98308600D01* X106002254Y-98308600D01* X105821644Y-98383411D01* X105700000Y-98505055D01* X105578356Y-98383411D01* X105397746Y-98308600D01* X105202254Y-98308600D01* X105021644Y-98383411D01* X104900000Y-98505055D01* X104778356Y-98383411D01* X104597746Y-98308600D01* X104402254Y-98308600D01* X104221644Y-98383411D01* X104083411Y-98521644D01* X104008600Y-98702254D01* X101342194Y-98702254D01* X101342194Y-98692150D01* X101259649Y-98492869D01* X101107125Y-98340345D01* X100907844Y-98257800D01* X100692144Y-98257800D01* X100492863Y-98340345D01* X100340339Y-98492869D01* X100257794Y-98692150D01* X96290779Y-98692150D01* X96207850Y-98657800D01* X95992150Y-98657800D01* X95792869Y-98740345D01* X95640345Y-98892869D01* X95557800Y-99092150D01* X78771648Y-99092150D01* X78771648Y-98954702D01* X78689103Y-98755421D01* X78536579Y-98602897D01* X78337298Y-98520352D01* X78121598Y-98520352D01* X77922317Y-98602897D01* X77769793Y-98755421D01* X77687248Y-98954702D01* X77687248Y-99023248D01* X77618702Y-99023248D01* X77419421Y-99105793D01* X77266897Y-99258317D01* X77184352Y-99457598D01* X66363200Y-99457598D01* X66363200Y-97679598D01* X77692352Y-97679598D01* X77692352Y-97895298D01* X77774897Y-98094579D01* X77927421Y-98247103D01* X78126702Y-98329648D01* X78342402Y-98329648D01* X78541683Y-98247103D01* X78694207Y-98094579D01* X78776752Y-97895298D01* X78776752Y-97826752D01* X78845298Y-97826752D01* X79044579Y-97744207D01* X79197103Y-97591683D01* X79279648Y-97392402D01* X79279648Y-97191951D01* X92256800Y-97191951D01* X92256800Y-97408049D01* X92339497Y-97607698D01* X92431799Y-97700000D01* X92339497Y-97792302D01* X92256800Y-97991951D01* X92256800Y-98208049D01* X92339497Y-98407698D01* X92492302Y-98560503D01* X92691951Y-98643200D01* X92908049Y-98643200D01* X93107698Y-98560503D01* X93260503Y-98407698D01* X93343200Y-98208049D01* X93343200Y-97991951D01* X93260503Y-97792302D01* X93260152Y-97791951D01* X95356800Y-97791951D01* X95356800Y-98008049D01* X95439497Y-98207698D01* X95592302Y-98360503D01* X95791951Y-98443200D01* X96008049Y-98443200D01* X96207698Y-98360503D01* X96360503Y-98207698D01* X96443200Y-98008049D01* X96443200Y-97791951D01* X96360503Y-97592302D01* X96207698Y-97439497D01* X96092912Y-97391951D01* X101456800Y-97391951D01* X101456800Y-97608049D01* X101539497Y-97807698D01* X101692302Y-97960503D01* X101891951Y-98043200D01* X102108049Y-98043200D01* X102307698Y-97960503D01* X102460503Y-97807698D01* X102525634Y-97650458D01* X102578611Y-97778356D01* X102716844Y-97916589D01* X102897454Y-97991400D01* X103092946Y-97991400D01* X103273556Y-97916589D01* X103300000Y-97890145D01* X103326444Y-97916589D01* X103507054Y-97991400D01* X103702546Y-97991400D01* X103883156Y-97916589D01* X104021389Y-97778356D01* X104096200Y-97597746D01* X104096200Y-97402254D01* X104021389Y-97221644D01* X103883156Y-97083411D01* X103702546Y-97008600D01* X103507054Y-97008600D01* X103326444Y-97083411D01* X103300000Y-97109855D01* X103273556Y-97083411D01* X103092946Y-97008600D01* X102897454Y-97008600D01* X102716844Y-97083411D01* X102578611Y-97221644D01* X102525634Y-97349542D01* X102460503Y-97192302D01* X102307698Y-97039497D01* X102108049Y-96956800D01* X101891951Y-96956800D01* X101692302Y-97039497D01* X101539497Y-97192302D01* X101456800Y-97391951D01* X96092912Y-97391951D01* X96008049Y-97356800D01* X95791951Y-97356800D01* X95592302Y-97439497D01* X95439497Y-97592302D01* X95356800Y-97791951D01* X93260152Y-97791951D01* X93168201Y-97700000D01* X93260503Y-97607698D01* X93343200Y-97408049D01* X93343200Y-97191951D01* X93260503Y-96992302D01* X93107698Y-96839497D01* X92908049Y-96756800D01* X92691951Y-96756800D01* X92492302Y-96839497D01* X92339497Y-96992302D01* X92256800Y-97191951D01* X79279648Y-97191951D01* X79279648Y-97176702D01* X79197103Y-96977421D01* X79044579Y-96824897D01* X78845298Y-96742352D01* X78629598Y-96742352D01* X78430317Y-96824897D01* X78277793Y-96977421D01* X78195248Y-97176702D01* X78195248Y-97245248D01* X78126702Y-97245248D01* X77927421Y-97327793D01* X77774897Y-97480317D01* X77692352Y-97679598D01* X66363200Y-97679598D01* X66363200Y-95502254D01* X96208600Y-95502254D01* X96208600Y-95697746D01* X96283411Y-95878356D01* X96421644Y-96016589D01* X96602254Y-96091400D01* X96797746Y-96091400D01* X96978356Y-96016589D01* X97002795Y-95992150D01* X98757800Y-95992150D01* X98757800Y-96207850D01* X98840345Y-96407131D01* X98992869Y-96559655D01* X99192150Y-96642200D01* X99407850Y-96642200D01* X99607131Y-96559655D01* X99759655Y-96407131D01* X99842200Y-96207850D01* X99842200Y-95992150D01* X99759655Y-95792869D01* X99607131Y-95640345D01* X99407850Y-95557800D01* X99192150Y-95557800D01* X98992869Y-95640345D01* X98840345Y-95792869D01* X98757800Y-95992150D01* X97002795Y-95992150D01* X97116589Y-95878356D01* X97191400Y-95697746D01* X97191400Y-95502254D01* X97116589Y-95321644D01* X96978356Y-95183411D01* X96797746Y-95108600D01* X96602254Y-95108600D01* X96421644Y-95183411D01* X96283411Y-95321644D01* X96208600Y-95502254D01* X66363200Y-95502254D01* X66363200Y-94392142D01* X98757800Y-94392142D01* X98757800Y-94607842D01* X98840345Y-94807123D01* X98992869Y-94959647D01* X99192150Y-95042192D01* X99407850Y-95042192D01* X99607131Y-94959647D01* X99759655Y-94807123D01* X99842200Y-94607842D01* X99842200Y-94392150D01* X100357800Y-94392150D01* X100357800Y-94607850D01* X100440345Y-94807131D01* X100592869Y-94959655D01* X100792150Y-95042200D01* X101007850Y-95042200D01* X101207131Y-94959655D01* X101359655Y-94807131D01* X101442200Y-94607850D01* X101442200Y-94392150D01* X101359655Y-94192869D01* X101207131Y-94040345D01* X101007850Y-93957800D01* X100792150Y-93957800D01* X100592869Y-94040345D01* X100440345Y-94192869D01* X100357800Y-94392150D01* X99842200Y-94392150D01* X99842200Y-94392142D01* X99759655Y-94192861D01* X99607131Y-94040337D01* X99407850Y-93957792D01* X99192150Y-93957792D01* X98992869Y-94040337D01* X98840345Y-94192861D01* X98757800Y-94392142D01* X66363200Y-94392142D01* X66363200Y-85319060D01* X66756800Y-85319060D01* X66756800Y-85940940D01* X66994783Y-86515482D01* X67434518Y-86955217D01* X68009060Y-87193200D01* X68630940Y-87193200D01* X68711800Y-87159707D01* X68711800Y-93000000D01* X68733738Y-93110289D01* X68796212Y-93203788D01* X68889711Y-93266262D01* X69000000Y-93288200D01* X89500000Y-93288200D01* X89610289Y-93266262D01* X89703788Y-93203788D01* X89766262Y-93110289D01* X89788200Y-93000000D01* X89788200Y-92902254D01* X96308600Y-92902254D01* X96308600Y-93097746D01* X96383411Y-93278356D01* X96521644Y-93416589D01* X96702254Y-93491400D01* X96897746Y-93491400D01* X97078356Y-93416589D01* X97216589Y-93278356D01* X97291400Y-93097746D01* X97291400Y-92902254D01* X97287215Y-92892150D01* X99957800Y-92892150D01* X99957800Y-93107850D01* X100040345Y-93307131D01* X100192869Y-93459655D01* X100392150Y-93542200D01* X100607850Y-93542200D01* X100807131Y-93459655D01* X100864532Y-93402254D01* X106008600Y-93402254D01* X106008600Y-93597746D01* X106083411Y-93778356D01* X106221644Y-93916589D01* X106402254Y-93991400D01* X106597746Y-93991400D01* X106778356Y-93916589D01* X106916589Y-93778356D01* X106991400Y-93597746D01* X106991400Y-93402254D01* X108008600Y-93402254D01* X108008600Y-93597746D01* X108083411Y-93778356D01* X108221644Y-93916589D01* X108402254Y-93991400D01* X108597746Y-93991400D01* X108778356Y-93916589D01* X108916589Y-93778356D01* X108991400Y-93597746D01* X108991400Y-93402254D01* X111008600Y-93402254D01* X111008600Y-93597746D01* X111083411Y-93778356D01* X111221644Y-93916589D01* X111402254Y-93991400D01* X111597746Y-93991400D01* X111778356Y-93916589D01* X111916589Y-93778356D01* X111991400Y-93597746D01* X111991400Y-93402254D01* X114008600Y-93402254D01* X114008600Y-93597746D01* X114083411Y-93778356D01* X114221644Y-93916589D01* X114402254Y-93991400D01* X114597746Y-93991400D01* X114778356Y-93916589D01* X114916589Y-93778356D01* X114991400Y-93597746D01* X114991400Y-93402254D01* X118008600Y-93402254D01* X118008600Y-93597746D01* X118083411Y-93778356D01* X118221644Y-93916589D01* X118402254Y-93991400D01* X118597746Y-93991400D01* X118778356Y-93916589D01* X118916589Y-93778356D01* X118991400Y-93597746D01* X118991400Y-93402254D01* X118916589Y-93221644D01* X118778356Y-93083411D01* X118597746Y-93008600D01* X118402254Y-93008600D01* X118221644Y-93083411D01* X118083411Y-93221644D01* X118008600Y-93402254D01* X114991400Y-93402254D01* X114916589Y-93221644D01* X114778356Y-93083411D01* X114597746Y-93008600D01* X114402254Y-93008600D01* X114221644Y-93083411D01* X114083411Y-93221644D01* X114008600Y-93402254D01* X111991400Y-93402254D01* X111916589Y-93221644D01* X111778356Y-93083411D01* X111597746Y-93008600D01* X111402254Y-93008600D01* X111221644Y-93083411D01* X111083411Y-93221644D01* X111008600Y-93402254D01* X108991400Y-93402254D01* X108916589Y-93221644D01* X108778356Y-93083411D01* X108597746Y-93008600D01* X108402254Y-93008600D01* X108221644Y-93083411D01* X108083411Y-93221644D01* X108008600Y-93402254D01* X106991400Y-93402254D01* X106916589Y-93221644D01* X106778356Y-93083411D01* X106597746Y-93008600D01* X106402254Y-93008600D01* X106221644Y-93083411D01* X106083411Y-93221644D01* X106008600Y-93402254D01* X100864532Y-93402254D01* X100959655Y-93307131D01* X101042200Y-93107850D01* X101042200Y-92892150D01* X100959655Y-92692869D01* X100807131Y-92540345D01* X100607850Y-92457800D01* X100392150Y-92457800D01* X100192869Y-92540345D01* X100040345Y-92692869D01* X99957800Y-92892150D01* X97287215Y-92892150D01* X97216589Y-92721644D01* X97078356Y-92583411D01* X96897746Y-92508600D01* X96702254Y-92508600D01* X96521644Y-92583411D01* X96383411Y-92721644D01* X96308600Y-92902254D01* X89788200Y-92902254D01* X89788200Y-92402254D01* X102008600Y-92402254D01* X102008600Y-92597746D01* X102083411Y-92778356D01* X102221644Y-92916589D01* X102402254Y-92991400D01* X102597746Y-92991400D01* X102778356Y-92916589D01* X102916589Y-92778356D01* X102991400Y-92597746D01* X102991400Y-92402254D01* X103008600Y-92402254D01* X103008600Y-92597746D01* X103083411Y-92778356D01* X103221644Y-92916589D01* X103402254Y-92991400D01* X103597746Y-92991400D01* X103778356Y-92916589D01* X103916589Y-92778356D01* X103991400Y-92597746D01* X103991400Y-92402254D01* X104008600Y-92402254D01* X104008600Y-92597746D01* X104083411Y-92778356D01* X104221644Y-92916589D01* X104402254Y-92991400D01* X104597746Y-92991400D01* X104778356Y-92916589D01* X104916589Y-92778356D01* X104991400Y-92597746D01* X104991400Y-92402254D01* X107008600Y-92402254D01* X107008600Y-92597746D01* X107083411Y-92778356D01* X107221644Y-92916589D01* X107402254Y-92991400D01* X107597746Y-92991400D01* X107778356Y-92916589D01* X107916589Y-92778356D01* X107991400Y-92597746D01* X107991400Y-92402254D01* X108008600Y-92402254D01* X108008600Y-92597746D01* X108083411Y-92778356D01* X108221644Y-92916589D01* X108402254Y-92991400D01* X108597746Y-92991400D01* X108778356Y-92916589D01* X108916589Y-92778356D01* X108991400Y-92597746D01* X108991400Y-92402254D01* X108916589Y-92221644D01* X108778356Y-92083411D01* X108597746Y-92008600D01* X108402254Y-92008600D01* X108221644Y-92083411D01* X108083411Y-92221644D01* X108008600Y-92402254D01* X107991400Y-92402254D01* X107916589Y-92221644D01* X107778356Y-92083411D01* X107597746Y-92008600D01* X107402254Y-92008600D01* X107221644Y-92083411D01* X107083411Y-92221644D01* X107008600Y-92402254D01* X104991400Y-92402254D01* X104916589Y-92221644D01* X104778356Y-92083411D01* X104597746Y-92008600D01* X104402254Y-92008600D01* X104221644Y-92083411D01* X104083411Y-92221644D01* X104008600Y-92402254D01* X103991400Y-92402254D01* X103916589Y-92221644D01* X103778356Y-92083411D01* X103597746Y-92008600D01* X103402254Y-92008600D01* X103221644Y-92083411D01* X103083411Y-92221644D01* X103008600Y-92402254D01* X102991400Y-92402254D01* X102916589Y-92221644D01* X102778356Y-92083411D01* X102597746Y-92008600D01* X102402254Y-92008600D01* X102221644Y-92083411D01* X102083411Y-92221644D01* X102008600Y-92402254D01* X89788200Y-92402254D01* X89788200Y-91552254D01* X95108600Y-91552254D01* X95108600Y-91747746D01* X95183411Y-91928356D01* X95321644Y-92066589D01* X95502254Y-92141400D01* X95697746Y-92141400D01* X95878356Y-92066589D01* X96016589Y-91928356D01* X96091400Y-91747746D01* X96091400Y-91552254D01* X96025083Y-91392150D01* X98457800Y-91392150D01* X98457800Y-91607850D01* X98540345Y-91807131D01* X98692869Y-91959655D01* X98892150Y-92042200D01* X99107850Y-92042200D01* X99307131Y-91959655D01* X99459655Y-91807131D01* X99542200Y-91607850D01* X99542200Y-91392150D01* X99957800Y-91392150D01* X99957800Y-91607850D01* X100040345Y-91807131D01* X100192869Y-91959655D01* X100392150Y-92042200D01* X100607850Y-92042200D01* X100807131Y-91959655D01* X100959655Y-91807131D01* X101042200Y-91607850D01* X101042200Y-91402254D01* X103008600Y-91402254D01* X103008600Y-91597746D01* X103083411Y-91778356D01* X103221644Y-91916589D01* X103402254Y-91991400D01* X103597746Y-91991400D01* X103778356Y-91916589D01* X103916589Y-91778356D01* X103991400Y-91597746D01* X103991400Y-91402254D01* X104008600Y-91402254D01* X104008600Y-91597746D01* X104083411Y-91778356D01* X104221644Y-91916589D01* X104402254Y-91991400D01* X104597746Y-91991400D01* X104778356Y-91916589D01* X104916589Y-91778356D01* X104991400Y-91597746D01* X104991400Y-91402254D01* X105008600Y-91402254D01* X105008600Y-91597746D01* X105083411Y-91778356D01* X105221644Y-91916589D01* X105402254Y-91991400D01* X105597746Y-91991400D01* X105778356Y-91916589D01* X105916589Y-91778356D01* X105991400Y-91597746D01* X105991400Y-91402254D01* X108008600Y-91402254D01* X108008600Y-91597746D01* X108083411Y-91778356D01* X108221644Y-91916589D01* X108402254Y-91991400D01* X108597746Y-91991400D01* X108778356Y-91916589D01* X108916589Y-91778356D01* X108991400Y-91597746D01* X108991400Y-91402254D01* X108916589Y-91221644D01* X108778356Y-91083411D01* X108597746Y-91008600D01* X108402254Y-91008600D01* X108221644Y-91083411D01* X108083411Y-91221644D01* X108008600Y-91402254D01* X105991400Y-91402254D01* X105916589Y-91221644D01* X105778356Y-91083411D01* X105597746Y-91008600D01* X105402254Y-91008600D01* X105221644Y-91083411D01* X105083411Y-91221644D01* X105008600Y-91402254D01* X104991400Y-91402254D01* X104916589Y-91221644D01* X104778356Y-91083411D01* X104597746Y-91008600D01* X104402254Y-91008600D01* X104221644Y-91083411D01* X104083411Y-91221644D01* X104008600Y-91402254D01* X103991400Y-91402254D01* X103916589Y-91221644D01* X103778356Y-91083411D01* X103597746Y-91008600D01* X103402254Y-91008600D01* X103221644Y-91083411D01* X103083411Y-91221644D01* X103008600Y-91402254D01* X101042200Y-91402254D01* X101042200Y-91392150D01* X100959655Y-91192869D01* X100807131Y-91040345D01* X100607850Y-90957800D01* X100392150Y-90957800D01* X100192869Y-91040345D01* X100040345Y-91192869D01* X99957800Y-91392150D01* X99542200Y-91392150D01* X99459655Y-91192869D01* X99307131Y-91040345D01* X99107850Y-90957800D01* X98892150Y-90957800D01* X98692869Y-91040345D01* X98540345Y-91192869D01* X98457800Y-91392150D01* X96025083Y-91392150D01* X96016589Y-91371644D01* X95878356Y-91233411D01* X95697746Y-91158600D01* X95502254Y-91158600D01* X95321644Y-91233411D01* X95183411Y-91371644D01* X95108600Y-91552254D01* X89788200Y-91552254D01* X89788200Y-89892150D01* X99657806Y-89892150D01* X99657806Y-90107850D01* X99740351Y-90307131D01* X99892875Y-90459655D01* X100092156Y-90542200D01* X100307856Y-90542200D01* X100507137Y-90459655D01* X100564538Y-90402254D01* X102008600Y-90402254D01* X102008600Y-90597746D01* X102083411Y-90778356D01* X102221644Y-90916589D01* X102402254Y-90991400D01* X102597746Y-90991400D01* X102778356Y-90916589D01* X102916589Y-90778356D01* X102991400Y-90597746D01* X102991400Y-90402254D01* X103008600Y-90402254D01* X103008600Y-90597746D01* X103083411Y-90778356D01* X103221644Y-90916589D01* X103402254Y-90991400D01* X103597746Y-90991400D01* X103778356Y-90916589D01* X103916589Y-90778356D01* X103991400Y-90597746D01* X103991400Y-90402254D01* X104008600Y-90402254D01* X104008600Y-90597746D01* X104083411Y-90778356D01* X104221644Y-90916589D01* X104402254Y-90991400D01* X104597746Y-90991400D01* X104778356Y-90916589D01* X104916589Y-90778356D01* X104991400Y-90597746D01* X104991400Y-90402254D01* X105008600Y-90402254D01* X105008600Y-90597746D01* X105083411Y-90778356D01* X105221644Y-90916589D01* X105402254Y-90991400D01* X105597746Y-90991400D01* X105778356Y-90916589D01* X105916589Y-90778356D01* X105991400Y-90597746D01* X105991400Y-90402254D01* X106008600Y-90402254D01* X106008600Y-90597746D01* X106083411Y-90778356D01* X106221644Y-90916589D01* X106402254Y-90991400D01* X106597746Y-90991400D01* X106778356Y-90916589D01* X106916589Y-90778356D01* X106991400Y-90597746D01* X106991400Y-90402254D01* X106916589Y-90221644D01* X106778356Y-90083411D01* X106597746Y-90008600D01* X106402254Y-90008600D01* X106221644Y-90083411D01* X106083411Y-90221644D01* X106008600Y-90402254D01* X105991400Y-90402254D01* X105916589Y-90221644D01* X105778356Y-90083411D01* X105597746Y-90008600D01* X105402254Y-90008600D01* X105221644Y-90083411D01* X105083411Y-90221644D01* X105008600Y-90402254D01* X104991400Y-90402254D01* X104916589Y-90221644D01* X104778356Y-90083411D01* X104597746Y-90008600D01* X104402254Y-90008600D01* X104221644Y-90083411D01* X104083411Y-90221644D01* X104008600Y-90402254D01* X103991400Y-90402254D01* X103916589Y-90221644D01* X103778356Y-90083411D01* X103597746Y-90008600D01* X103402254Y-90008600D01* X103221644Y-90083411D01* X103083411Y-90221644D01* X103008600Y-90402254D01* X102991400Y-90402254D01* X102916589Y-90221644D01* X102778356Y-90083411D01* X102597746Y-90008600D01* X102402254Y-90008600D01* X102221644Y-90083411D01* X102083411Y-90221644D01* X102008600Y-90402254D01* X100564538Y-90402254D01* X100659661Y-90307131D01* X100742206Y-90107850D01* X100742206Y-89892150D01* X100659661Y-89692869D01* X100507137Y-89540345D01* X100307856Y-89457800D01* X100092156Y-89457800D01* X99892875Y-89540345D01* X99740351Y-89692869D01* X99657806Y-89892150D01* X89788200Y-89892150D01* X89788200Y-89402254D01* X103008600Y-89402254D01* X103008600Y-89597746D01* X103083411Y-89778356D01* X103221644Y-89916589D01* X103402254Y-89991400D01* X103597746Y-89991400D01* X103778356Y-89916589D01* X103916589Y-89778356D01* X103991400Y-89597746D01* X103991400Y-89402254D01* X104008600Y-89402254D01* X104008600Y-89597746D01* X104083411Y-89778356D01* X104221644Y-89916589D01* X104402254Y-89991400D01* X104597746Y-89991400D01* X104778356Y-89916589D01* X104916589Y-89778356D01* X104991400Y-89597746D01* X104991400Y-89402254D01* X105008600Y-89402254D01* X105008600Y-89597746D01* X105083411Y-89778356D01* X105221644Y-89916589D01* X105402254Y-89991400D01* X105597746Y-89991400D01* X105778356Y-89916589D01* X105916589Y-89778356D01* X105991400Y-89597746D01* X105991400Y-89402254D01* X106008600Y-89402254D01* X106008600Y-89597746D01* X106083411Y-89778356D01* X106221644Y-89916589D01* X106402254Y-89991400D01* X106597746Y-89991400D01* X106778356Y-89916589D01* X106916589Y-89778356D01* X106991400Y-89597746D01* X106991400Y-89402254D01* X107008600Y-89402254D01* X107008600Y-89597746D01* X107083411Y-89778356D01* X107221644Y-89916589D01* X107402254Y-89991400D01* X107597746Y-89991400D01* X107778356Y-89916589D01* X107916589Y-89778356D01* X107991400Y-89597746D01* X107991400Y-89402254D01* X107916589Y-89221644D01* X107778356Y-89083411D01* X107597746Y-89008600D01* X107402254Y-89008600D01* X107221644Y-89083411D01* X107083411Y-89221644D01* X107008600Y-89402254D01* X106991400Y-89402254D01* X106916589Y-89221644D01* X106778356Y-89083411D01* X106597746Y-89008600D01* X106402254Y-89008600D01* X106221644Y-89083411D01* X106083411Y-89221644D01* X106008600Y-89402254D01* X105991400Y-89402254D01* X105916589Y-89221644D01* X105778356Y-89083411D01* X105597746Y-89008600D01* X105402254Y-89008600D01* X105221644Y-89083411D01* X105083411Y-89221644D01* X105008600Y-89402254D01* X104991400Y-89402254D01* X104916589Y-89221644D01* X104778356Y-89083411D01* X104597746Y-89008600D01* X104402254Y-89008600D01* X104221644Y-89083411D01* X104083411Y-89221644D01* X104008600Y-89402254D01* X103991400Y-89402254D01* X103916589Y-89221644D01* X103778356Y-89083411D01* X103597746Y-89008600D01* X103402254Y-89008600D01* X103221644Y-89083411D01* X103083411Y-89221644D01* X103008600Y-89402254D01* X89788200Y-89402254D01* X89788200Y-88402254D01* X102008600Y-88402254D01* X102008600Y-88597746D01* X102083411Y-88778356D01* X102221644Y-88916589D01* X102402254Y-88991400D01* X102597746Y-88991400D01* X102778356Y-88916589D01* X102916589Y-88778356D01* X102991400Y-88597746D01* X102991400Y-88402254D01* X103008600Y-88402254D01* X103008600Y-88597746D01* X103083411Y-88778356D01* X103221644Y-88916589D01* X103402254Y-88991400D01* X103597746Y-88991400D01* X103778356Y-88916589D01* X103916589Y-88778356D01* X103991400Y-88597746D01* X103991400Y-88402254D01* X104008600Y-88402254D01* X104008600Y-88597746D01* X104083411Y-88778356D01* X104221644Y-88916589D01* X104402254Y-88991400D01* X104597746Y-88991400D01* X104778356Y-88916589D01* X104916589Y-88778356D01* X104991400Y-88597746D01* X104991400Y-88402254D01* X105008600Y-88402254D01* X105008600Y-88597746D01* X105083411Y-88778356D01* X105221644Y-88916589D01* X105402254Y-88991400D01* X105597746Y-88991400D01* X105778356Y-88916589D01* X105916589Y-88778356D01* X105991400Y-88597746D01* X105991400Y-88402254D01* X106008600Y-88402254D01* X106008600Y-88597746D01* X106083411Y-88778356D01* X106221644Y-88916589D01* X106402254Y-88991400D01* X106597746Y-88991400D01* X106778356Y-88916589D01* X106916589Y-88778356D01* X106991400Y-88597746D01* X106991400Y-88402254D01* X107008600Y-88402254D01* X107008600Y-88597746D01* X107083411Y-88778356D01* X107221644Y-88916589D01* X107402254Y-88991400D01* X107597746Y-88991400D01* X107778356Y-88916589D01* X107916589Y-88778356D01* X107991400Y-88597746D01* X107991400Y-88402254D01* X107916589Y-88221644D01* X107778356Y-88083411D01* X107597746Y-88008600D01* X107402254Y-88008600D01* X107221644Y-88083411D01* X107083411Y-88221644D01* X107008600Y-88402254D01* X106991400Y-88402254D01* X106916589Y-88221644D01* X106778356Y-88083411D01* X106597746Y-88008600D01* X106402254Y-88008600D01* X106221644Y-88083411D01* X106083411Y-88221644D01* X106008600Y-88402254D01* X105991400Y-88402254D01* X105916589Y-88221644D01* X105778356Y-88083411D01* X105597746Y-88008600D01* X105402254Y-88008600D01* X105221644Y-88083411D01* X105083411Y-88221644D01* X105008600Y-88402254D01* X104991400Y-88402254D01* X104916589Y-88221644D01* X104778356Y-88083411D01* X104597746Y-88008600D01* X104402254Y-88008600D01* X104221644Y-88083411D01* X104083411Y-88221644D01* X104008600Y-88402254D01* X103991400Y-88402254D01* X103916589Y-88221644D01* X103778356Y-88083411D01* X103597746Y-88008600D01* X103402254Y-88008600D01* X103221644Y-88083411D01* X103083411Y-88221644D01* X103008600Y-88402254D01* X102991400Y-88402254D01* X102916589Y-88221644D01* X102778356Y-88083411D01* X102597746Y-88008600D01* X102402254Y-88008600D01* X102221644Y-88083411D01* X102083411Y-88221644D01* X102008600Y-88402254D01* X89788200Y-88402254D01* X89788200Y-87040702D01* X90806352Y-87040702D01* X90806352Y-87256402D01* X90888897Y-87455683D01* X91041421Y-87608207D01* X91240702Y-87690752D01* X91309248Y-87690752D01* X91309248Y-87759298D01* X91391793Y-87958579D01* X91544317Y-88111103D01* X91743598Y-88193648D01* X91959298Y-88193648D01* X92158579Y-88111103D01* X92311103Y-87958579D01* X92393648Y-87759298D01* X92393648Y-87543598D01* X92335102Y-87402254D01* X102008600Y-87402254D01* X102008600Y-87597746D01* X102083411Y-87778356D01* X102221644Y-87916589D01* X102402254Y-87991400D01* X102597746Y-87991400D01* X102778356Y-87916589D01* X102916589Y-87778356D01* X102991400Y-87597746D01* X102991400Y-87402254D01* X103008600Y-87402254D01* X103008600Y-87597746D01* X103083411Y-87778356D01* X103221644Y-87916589D01* X103402254Y-87991400D01* X103597746Y-87991400D01* X103778356Y-87916589D01* X103916589Y-87778356D01* X103991400Y-87597746D01* X103991400Y-87402254D01* X105008600Y-87402254D01* X105008600Y-87597746D01* X105083411Y-87778356D01* X105221644Y-87916589D01* X105402254Y-87991400D01* X105597746Y-87991400D01* X105778356Y-87916589D01* X105916589Y-87778356D01* X105991400Y-87597746D01* X105991400Y-87402254D01* X105916589Y-87221644D01* X105778356Y-87083411D01* X105597746Y-87008600D01* X105402254Y-87008600D01* X105221644Y-87083411D01* X105083411Y-87221644D01* X105008600Y-87402254D01* X103991400Y-87402254D01* X103916589Y-87221644D01* X103778356Y-87083411D01* X103597746Y-87008600D01* X103402254Y-87008600D01* X103221644Y-87083411D01* X103083411Y-87221644D01* X103008600Y-87402254D01* X102991400Y-87402254D01* X102916589Y-87221644D01* X102778356Y-87083411D01* X102597746Y-87008600D01* X102402254Y-87008600D01* X102221644Y-87083411D01* X102083411Y-87221644D01* X102008600Y-87402254D01* X92335102Y-87402254D01* X92311103Y-87344317D01* X92158579Y-87191793D01* X91959298Y-87109248D01* X91890752Y-87109248D01* X91890752Y-87040702D01* X91808207Y-86841421D01* X91655683Y-86688897D01* X91456402Y-86606352D01* X91240702Y-86606352D01* X91041421Y-86688897D01* X90888897Y-86841421D01* X90806352Y-87040702D01* X89788200Y-87040702D01* X89788200Y-86402254D01* X102008600Y-86402254D01* X102008600Y-86597746D01* X102083411Y-86778356D01* X102221644Y-86916589D01* X102402254Y-86991400D01* X102597746Y-86991400D01* X102778356Y-86916589D01* X102916589Y-86778356D01* X102991400Y-86597746D01* X102991400Y-86402254D01* X103008600Y-86402254D01* X103008600Y-86597746D01* X103083411Y-86778356D01* X103221644Y-86916589D01* X103402254Y-86991400D01* X103597746Y-86991400D01* X103778356Y-86916589D01* X103916589Y-86778356D01* X103991400Y-86597746D01* X103991400Y-86402254D01* X104008600Y-86402254D01* X104008600Y-86597746D01* X104083411Y-86778356D01* X104221644Y-86916589D01* X104402254Y-86991400D01* X104597746Y-86991400D01* X104778356Y-86916589D01* X104916589Y-86778356D01* X104991400Y-86597746D01* X104991400Y-86402254D01* X105008600Y-86402254D01* X105008600Y-86597746D01* X105083411Y-86778356D01* X105221644Y-86916589D01* X105402254Y-86991400D01* X105597746Y-86991400D01* X105778356Y-86916589D01* X105916589Y-86778356D01* X105991400Y-86597746D01* X105991400Y-86402254D01* X108008600Y-86402254D01* X108008600Y-86597746D01* X108083411Y-86778356D01* X108221644Y-86916589D01* X108402254Y-86991400D01* X108597746Y-86991400D01* X108778356Y-86916589D01* X108916589Y-86778356D01* X108991400Y-86597746D01* X108991400Y-86402254D01* X108916589Y-86221644D01* X108778356Y-86083411D01* X108597746Y-86008600D01* X108402254Y-86008600D01* X108221644Y-86083411D01* X108083411Y-86221644D01* X108008600Y-86402254D01* X105991400Y-86402254D01* X105916589Y-86221644D01* X105778356Y-86083411D01* X105597746Y-86008600D01* X105402254Y-86008600D01* X105221644Y-86083411D01* X105083411Y-86221644D01* X105008600Y-86402254D01* X104991400Y-86402254D01* X104916589Y-86221644D01* X104778356Y-86083411D01* X104597746Y-86008600D01* X104402254Y-86008600D01* X104221644Y-86083411D01* X104083411Y-86221644D01* X104008600Y-86402254D01* X103991400Y-86402254D01* X103916589Y-86221644D01* X103778356Y-86083411D01* X103597746Y-86008600D01* X103402254Y-86008600D01* X103221644Y-86083411D01* X103083411Y-86221644D01* X103008600Y-86402254D01* X102991400Y-86402254D01* X102916589Y-86221644D01* X102778356Y-86083411D01* X102597746Y-86008600D01* X102402254Y-86008600D01* X102221644Y-86083411D01* X102083411Y-86221644D01* X102008600Y-86402254D01* X89788200Y-86402254D01* X89788200Y-86170290D01* X89883200Y-85940940D01* X89883200Y-85402254D01* X103008600Y-85402254D01* X103008600Y-85597746D01* X103083411Y-85778356D01* X103221644Y-85916589D01* X103402254Y-85991400D01* X103597746Y-85991400D01* X103778356Y-85916589D01* X103916589Y-85778356D01* X103991400Y-85597746D01* X103991400Y-85402254D01* X106008600Y-85402254D01* X106008600Y-85597746D01* X106083411Y-85778356D01* X106221644Y-85916589D01* X106402254Y-85991400D01* X106597746Y-85991400D01* X106778356Y-85916589D01* X106916589Y-85778356D01* X106991400Y-85597746D01* X106991400Y-85402254D01* X106916589Y-85221644D01* X106778356Y-85083411D01* X106597746Y-85008600D01* X106402254Y-85008600D01* X106221644Y-85083411D01* X106083411Y-85221644D01* X106008600Y-85402254D01* X103991400Y-85402254D01* X103916589Y-85221644D01* X103778356Y-85083411D01* X103597746Y-85008600D01* X103402254Y-85008600D01* X103221644Y-85083411D01* X103083411Y-85221644D01* X103008600Y-85402254D01* X89883200Y-85402254D01* X89883200Y-85319060D01* X89788200Y-85089710D01* X89788200Y-84402254D01* X103008600Y-84402254D01* X103008600Y-84597746D01* X103083411Y-84778356D01* X103221644Y-84916589D01* X103402254Y-84991400D01* X103597746Y-84991400D01* X103778356Y-84916589D01* X103916589Y-84778356D01* X103991400Y-84597746D01* X103991400Y-84402254D01* X104008600Y-84402254D01* X104008600Y-84597746D01* X104083411Y-84778356D01* X104221644Y-84916589D01* X104402254Y-84991400D01* X104597746Y-84991400D01* X104778356Y-84916589D01* X104916589Y-84778356D01* X104991400Y-84597746D01* X104991400Y-84402254D01* X104916589Y-84221644D01* X104778356Y-84083411D01* X104597746Y-84008600D01* X104402254Y-84008600D01* X104221644Y-84083411D01* X104083411Y-84221644D01* X104008600Y-84402254D01* X103991400Y-84402254D01* X103916589Y-84221644D01* X103778356Y-84083411D01* X103597746Y-84008600D01* X103402254Y-84008600D01* X103221644Y-84083411D01* X103083411Y-84221644D01* X103008600Y-84402254D01* X89788200Y-84402254D01* X89788200Y-83402254D01* X103008600Y-83402254D01* X103008600Y-83597746D01* X103083411Y-83778356D01* X103221644Y-83916589D01* X103402254Y-83991400D01* X103597746Y-83991400D01* X103778356Y-83916589D01* X103916589Y-83778356D01* X103991400Y-83597746D01* X103991400Y-83402254D01* X108008600Y-83402254D01* X108008600Y-83597746D01* X108083411Y-83778356D01* X108221644Y-83916589D01* X108402254Y-83991400D01* X108597746Y-83991400D01* X108778356Y-83916589D01* X108916589Y-83778356D01* X108991400Y-83597746D01* X108991400Y-83402254D01* X108916589Y-83221644D01* X108778356Y-83083411D01* X108597746Y-83008600D01* X108402254Y-83008600D01* X108221644Y-83083411D01* X108083411Y-83221644D01* X108008600Y-83402254D01* X103991400Y-83402254D01* X103916589Y-83221644D01* X103778356Y-83083411D01* X103597746Y-83008600D01* X103402254Y-83008600D01* X103221644Y-83083411D01* X103083411Y-83221644D01* X103008600Y-83402254D01* X89788200Y-83402254D01* X89788200Y-81591951D01* X93056800Y-81591951D01* X93056800Y-81808049D01* X93139497Y-82007698D01* X93292302Y-82160503D01* X93491951Y-82243200D01* X93708049Y-82243200D01* X93907698Y-82160503D01* X94060503Y-82007698D01* X94089910Y-81936702D01* X98266352Y-81936702D01* X98266352Y-82152402D01* X98348897Y-82351683D01* X98501421Y-82504207D01* X98700702Y-82586752D01* X98769248Y-82586752D01* X98769248Y-82655298D01* X98851793Y-82854579D01* X99004317Y-83007103D01* X99203598Y-83089648D01* X99419298Y-83089648D01* X99618579Y-83007103D01* X99771103Y-82854579D01* X99853648Y-82655298D01* X99853648Y-82439598D01* X99838180Y-82402254D01* X101008600Y-82402254D01* X101008600Y-82597746D01* X101083411Y-82778356D01* X101221644Y-82916589D01* X101402254Y-82991400D01* X101597746Y-82991400D01* X101778356Y-82916589D01* X101916589Y-82778356D01* X101991400Y-82597746D01* X101991400Y-82402254D01* X103008600Y-82402254D01* X103008600Y-82597746D01* X103083411Y-82778356D01* X103221644Y-82916589D01* X103402254Y-82991400D01* X103597746Y-82991400D01* X103778356Y-82916589D01* X103916589Y-82778356D01* X103991400Y-82597746D01* X103991400Y-82402254D01* X106008600Y-82402254D01* X106008600Y-82597746D01* X106083411Y-82778356D01* X106221644Y-82916589D01* X106402254Y-82991400D01* X106597746Y-82991400D01* X106778356Y-82916589D01* X106916589Y-82778356D01* X106991400Y-82597746D01* X106991400Y-82402254D01* X106916589Y-82221644D01* X106778356Y-82083411D01* X106597746Y-82008600D01* X106402254Y-82008600D01* X106221644Y-82083411D01* X106083411Y-82221644D01* X106008600Y-82402254D01* X103991400Y-82402254D01* X103916589Y-82221644D01* X103778356Y-82083411D01* X103597746Y-82008600D01* X103402254Y-82008600D01* X103221644Y-82083411D01* X103083411Y-82221644D01* X103008600Y-82402254D01* X101991400Y-82402254D01* X101916589Y-82221644D01* X101778356Y-82083411D01* X101597746Y-82008600D01* X101402254Y-82008600D01* X101221644Y-82083411D01* X101083411Y-82221644D01* X101008600Y-82402254D01* X99838180Y-82402254D01* X99771103Y-82240317D01* X99618579Y-82087793D01* X99419298Y-82005248D01* X99350752Y-82005248D01* X99350752Y-81936702D01* X99268207Y-81737421D01* X99115683Y-81584897D01* X98916402Y-81502352D01* X98700702Y-81502352D01* X98501421Y-81584897D01* X98348897Y-81737421D01* X98266352Y-81936702D01* X94089910Y-81936702D01* X94143200Y-81808049D01* X94143200Y-81591951D01* X94064626Y-81402254D01* X103008600Y-81402254D01* X103008600Y-81597746D01* X103083411Y-81778356D01* X103221644Y-81916589D01* X103402254Y-81991400D01* X103597746Y-81991400D01* X103778356Y-81916589D01* X103916589Y-81778356D01* X103991400Y-81597746D01* X103991400Y-81402254D01* X105008600Y-81402254D01* X105008600Y-81597746D01* X105083411Y-81778356D01* X105221644Y-81916589D01* X105402254Y-81991400D01* X105597746Y-81991400D01* X105778356Y-81916589D01* X105916589Y-81778356D01* X105991400Y-81597746D01* X105991400Y-81402254D01* X108008600Y-81402254D01* X108008600Y-81597746D01* X108083411Y-81778356D01* X108221644Y-81916589D01* X108402254Y-81991400D01* X108597746Y-81991400D01* X108778356Y-81916589D01* X108916589Y-81778356D01* X108991400Y-81597746D01* X108991400Y-81402254D01* X108916589Y-81221644D01* X108778356Y-81083411D01* X108597746Y-81008600D01* X108402254Y-81008600D01* X108221644Y-81083411D01* X108083411Y-81221644D01* X108008600Y-81402254D01* X105991400Y-81402254D01* X105916589Y-81221644D01* X105778356Y-81083411D01* X105597746Y-81008600D01* X105402254Y-81008600D01* X105221644Y-81083411D01* X105083411Y-81221644D01* X105008600Y-81402254D01* X103991400Y-81402254D01* X103916589Y-81221644D01* X103778356Y-81083411D01* X103597746Y-81008600D01* X103402254Y-81008600D01* X103221644Y-81083411D01* X103083411Y-81221644D01* X103008600Y-81402254D01* X94064626Y-81402254D01* X94060503Y-81392302D01* X93907698Y-81239497D01* X93708049Y-81156800D01* X93491951Y-81156800D01* X93292302Y-81239497D01* X93139497Y-81392302D01* X93056800Y-81591951D01* X89788200Y-81591951D01* X89788200Y-81340564D01* X89792150Y-81342200D01* X90007850Y-81342200D01* X90207131Y-81259655D01* X90359655Y-81107131D01* X90442200Y-80907850D01* X90442200Y-80692150D01* X90359655Y-80492869D01* X90207131Y-80340345D01* X90007850Y-80257800D01* X89792150Y-80257800D01* X89788200Y-80259436D01* X89788200Y-80091951D01* X93656800Y-80091951D01* X93656800Y-80308049D01* X93739497Y-80507698D01* X93892302Y-80660503D01* X94091951Y-80743200D01* X94308049Y-80743200D01* X94507698Y-80660503D01* X94660503Y-80507698D01* X94704179Y-80402254D01* X104008600Y-80402254D01* X104008600Y-80597746D01* X104083411Y-80778356D01* X104221644Y-80916589D01* X104402254Y-80991400D01* X104597746Y-80991400D01* X104778356Y-80916589D01* X104916589Y-80778356D01* X104991400Y-80597746D01* X104991400Y-80402254D01* X104916589Y-80221644D01* X104778356Y-80083411D01* X104597746Y-80008600D01* X104402254Y-80008600D01* X104221644Y-80083411D01* X104083411Y-80221644D01* X104008600Y-80402254D01* X94704179Y-80402254D01* X94743200Y-80308049D01* X94743200Y-80091951D01* X94660503Y-79892302D01* X94507698Y-79739497D01* X94308049Y-79656800D01* X94091951Y-79656800D01* X93892302Y-79739497D01* X93739497Y-79892302D01* X93656800Y-80091951D01* X89788200Y-80091951D01* X89788200Y-79740564D01* X89792150Y-79742200D01* X90007850Y-79742200D01* X90207131Y-79659655D01* X90359655Y-79507131D01* X90442200Y-79307850D01* X90442200Y-79092150D01* X90442118Y-79091951D01* X93056800Y-79091951D01* X93056800Y-79308049D01* X93139497Y-79507698D01* X93292302Y-79660503D01* X93491951Y-79743200D01* X93708049Y-79743200D01* X93907698Y-79660503D01* X94060503Y-79507698D01* X94104179Y-79402254D01* X104008600Y-79402254D01* X104008600Y-79597746D01* X104083411Y-79778356D01* X104221644Y-79916589D01* X104402254Y-79991400D01* X104597746Y-79991400D01* X104778356Y-79916589D01* X104916589Y-79778356D01* X104991400Y-79597746D01* X104991400Y-79402254D01* X105008600Y-79402254D01* X105008600Y-79597746D01* X105083411Y-79778356D01* X105221644Y-79916589D01* X105402254Y-79991400D01* X105597746Y-79991400D01* X105778356Y-79916589D01* X105916589Y-79778356D01* X105991400Y-79597746D01* X105991400Y-79402254D01* X107008600Y-79402254D01* X107008600Y-79597746D01* X107083411Y-79778356D01* X107221644Y-79916589D01* X107402254Y-79991400D01* X107597746Y-79991400D01* X107778356Y-79916589D01* X107916589Y-79778356D01* X107991400Y-79597746D01* X107991400Y-79402254D01* X107916589Y-79221644D01* X107778356Y-79083411D01* X107597746Y-79008600D01* X107402254Y-79008600D01* X107221644Y-79083411D01* X107083411Y-79221644D01* X107008600Y-79402254D01* X105991400Y-79402254D01* X105916589Y-79221644D01* X105778356Y-79083411D01* X105597746Y-79008600D01* X105402254Y-79008600D01* X105221644Y-79083411D01* X105083411Y-79221644D01* X105008600Y-79402254D01* X104991400Y-79402254D01* X104916589Y-79221644D01* X104778356Y-79083411D01* X104597746Y-79008600D01* X104402254Y-79008600D01* X104221644Y-79083411D01* X104083411Y-79221644D01* X104008600Y-79402254D01* X94104179Y-79402254D01* X94143200Y-79308049D01* X94143200Y-79091951D01* X94060503Y-78892302D01* X93907698Y-78739497D01* X93708049Y-78656800D01* X93491951Y-78656800D01* X93292302Y-78739497D01* X93139497Y-78892302D01* X93056800Y-79091951D01* X90442118Y-79091951D01* X90359655Y-78892869D01* X90207131Y-78740345D01* X90007850Y-78657800D01* X89792150Y-78657800D01* X89788200Y-78659436D01* X89788200Y-78500000D01* X89768757Y-78402254D01* X108008600Y-78402254D01* X108008600Y-78597746D01* X108083411Y-78778356D01* X108221644Y-78916589D01* X108402254Y-78991400D01* X108597746Y-78991400D01* X108778356Y-78916589D01* X108916589Y-78778356D01* X108991400Y-78597746D01* X108991400Y-78402254D01* X108916589Y-78221644D01* X108778356Y-78083411D01* X108597746Y-78008600D01* X108402254Y-78008600D01* X108221644Y-78083411D01* X108083411Y-78221644D01* X108008600Y-78402254D01* X89768757Y-78402254D01* X89766262Y-78389711D01* X89703788Y-78296212D01* X89610289Y-78233738D01* X89500000Y-78211800D01* X80583856Y-78211800D01* X80707698Y-78160503D01* X80860503Y-78007698D01* X80943200Y-77808049D01* X80943200Y-77692150D01* X99457800Y-77692150D01* X99457800Y-77907850D01* X99540345Y-78107131D01* X99692869Y-78259655D01* X99892150Y-78342200D01* X100107850Y-78342200D01* X100307131Y-78259655D01* X100459655Y-78107131D01* X100542200Y-77907850D01* X100542200Y-77692150D01* X100459655Y-77492869D01* X100369040Y-77402254D01* X102008600Y-77402254D01* X102008600Y-77597746D01* X102083411Y-77778356D01* X102221644Y-77916589D01* X102402254Y-77991400D01* X102597746Y-77991400D01* X102778356Y-77916589D01* X102916589Y-77778356D01* X102991400Y-77597746D01* X102991400Y-77402254D01* X103008600Y-77402254D01* X103008600Y-77597746D01* X103083411Y-77778356D01* X103221644Y-77916589D01* X103402254Y-77991400D01* X103597746Y-77991400D01* X103778356Y-77916589D01* X103916589Y-77778356D01* X103991400Y-77597746D01* X103991400Y-77402254D01* X105008600Y-77402254D01* X105008600Y-77597746D01* X105083411Y-77778356D01* X105221644Y-77916589D01* X105402254Y-77991400D01* X105597746Y-77991400D01* X105778356Y-77916589D01* X105916589Y-77778356D01* X105991400Y-77597746D01* X105991400Y-77402254D01* X107008600Y-77402254D01* X107008600Y-77597746D01* X107083411Y-77778356D01* X107221644Y-77916589D01* X107402254Y-77991400D01* X107597746Y-77991400D01* X107778356Y-77916589D01* X107916589Y-77778356D01* X107991400Y-77597746D01* X107991400Y-77402254D01* X108008600Y-77402254D01* X108008600Y-77597746D01* X108083411Y-77778356D01* X108221644Y-77916589D01* X108402254Y-77991400D01* X108597746Y-77991400D01* X108778356Y-77916589D01* X108916589Y-77778356D01* X108991400Y-77597746D01* X108991400Y-77402254D01* X109008600Y-77402254D01* X109008600Y-77597746D01* X109083411Y-77778356D01* X109221644Y-77916589D01* X109402254Y-77991400D01* X109597746Y-77991400D01* X109711800Y-77944157D01* X109711800Y-78055843D01* X109597746Y-78008600D01* X109402254Y-78008600D01* X109221644Y-78083411D01* X109083411Y-78221644D01* X109008600Y-78402254D01* X109008600Y-78597746D01* X109083411Y-78778356D01* X109221644Y-78916589D01* X109402254Y-78991400D01* X109597746Y-78991400D01* X109711800Y-78944157D01* X109711800Y-79055843D01* X109597746Y-79008600D01* X109402254Y-79008600D01* X109221644Y-79083411D01* X109083411Y-79221644D01* X109008600Y-79402254D01* X109008600Y-79597746D01* X109083411Y-79778356D01* X109221644Y-79916589D01* X109402254Y-79991400D01* X109597746Y-79991400D01* X109711800Y-79944157D01* X109711800Y-81055843D01* X109597746Y-81008600D01* X109402254Y-81008600D01* X109221644Y-81083411D01* X109083411Y-81221644D01* X109008600Y-81402254D01* X109008600Y-81597746D01* X109083411Y-81778356D01* X109221644Y-81916589D01* X109402254Y-81991400D01* X109597746Y-81991400D01* X109711800Y-81944157D01* X109711800Y-83055843D01* X109597746Y-83008600D01* X109402254Y-83008600D01* X109221644Y-83083411D01* X109083411Y-83221644D01* X109008600Y-83402254D01* X109008600Y-83597746D01* X109083411Y-83778356D01* X109221644Y-83916589D01* X109402254Y-83991400D01* X109597746Y-83991400D01* X109711800Y-83944157D01* X109711800Y-86055843D01* X109597746Y-86008600D01* X109402254Y-86008600D01* X109221644Y-86083411D01* X109083411Y-86221644D01* X109008600Y-86402254D01* X109008600Y-86597746D01* X109083411Y-86778356D01* X109221644Y-86916589D01* X109402254Y-86991400D01* X109597746Y-86991400D01* X109711800Y-86944157D01* X109711800Y-87300000D01* X109733738Y-87410289D01* X109793681Y-87500000D01* X109733738Y-87589711D01* X109711800Y-87700000D01* X109711800Y-88055843D01* X109597746Y-88008600D01* X109402254Y-88008600D01* X109221644Y-88083411D01* X109083411Y-88221644D01* X109008600Y-88402254D01* X109008600Y-88597746D01* X109083411Y-88778356D01* X109221644Y-88916589D01* X109402254Y-88991400D01* X109597746Y-88991400D01* X109711800Y-88944157D01* X109711800Y-90055843D01* X109597746Y-90008600D01* X109402254Y-90008600D01* X109221644Y-90083411D01* X109083411Y-90221644D01* X109008600Y-90402254D01* X109008600Y-90597746D01* X109083411Y-90778356D01* X109221644Y-90916589D01* X109402254Y-90991400D01* X109597746Y-90991400D01* X109711800Y-90944157D01* X109711800Y-91055843D01* X109597746Y-91008600D01* X109402254Y-91008600D01* X109221644Y-91083411D01* X109083411Y-91221644D01* X109008600Y-91402254D01* X109008600Y-91597746D01* X109083411Y-91778356D01* X109221644Y-91916589D01* X109402254Y-91991400D01* X109597746Y-91991400D01* X109711800Y-91944157D01* X109711800Y-92055843D01* X109597746Y-92008600D01* X109402254Y-92008600D01* X109221644Y-92083411D01* X109083411Y-92221644D01* X109008600Y-92402254D01* X109008600Y-92597746D01* X109083411Y-92778356D01* X109221644Y-92916589D01* X109402254Y-92991400D01* X109597746Y-92991400D01* X109778356Y-92916589D01* X109916589Y-92778356D01* X109991400Y-92597746D01* X109991400Y-92402254D01* X109984077Y-92384574D01* X110003390Y-92388180D01* X112024278Y-92364405D01* X112008600Y-92402254D01* X112008600Y-92597746D01* X112083411Y-92778356D01* X112221644Y-92916589D01* X112402254Y-92991400D01* X112597746Y-92991400D01* X112778356Y-92916589D01* X112916589Y-92778356D01* X112991400Y-92597746D01* X112991400Y-92402254D01* X112971108Y-92353266D01* X115038968Y-92328938D01* X115008600Y-92402254D01* X115008600Y-92597746D01* X115083411Y-92778356D01* X115221644Y-92916589D01* X115402254Y-92991400D01* X115597746Y-92991400D01* X115778356Y-92916589D01* X115916589Y-92778356D01* X115991400Y-92597746D01* X115991400Y-92402254D01* X115956560Y-92318143D01* X117048762Y-92305293D01* X117008600Y-92402254D01* X117008600Y-92597746D01* X117083411Y-92778356D01* X117221644Y-92916589D01* X117402254Y-92991400D01* X117597746Y-92991400D01* X117778356Y-92916589D01* X117916589Y-92778356D01* X117991400Y-92597746D01* X117991400Y-92402254D01* X117946861Y-92294728D01* X118382032Y-92289608D01* X124296212Y-98203788D01* X124389711Y-98266262D01* X124500000Y-98288200D01* X128000000Y-98288200D01* X128110289Y-98266262D01* X128203788Y-98203788D01* X129703788Y-96703788D01* X129740808Y-96648384D01* X132796212Y-99703788D01* X132889711Y-99766262D01* X133000000Y-99788200D01* X134691082Y-99788200D01* X134740345Y-99907131D01* X134892869Y-100059655D01* X135092150Y-100142200D01* X135307850Y-100142200D01* X135507131Y-100059655D01* X135659655Y-99907131D01* X135708918Y-99788200D01* X137956800Y-99788200D01* X137956800Y-99808049D01* X138039497Y-100007698D01* X138192302Y-100160503D01* X138391951Y-100243200D01* X138608049Y-100243200D01* X138807698Y-100160503D01* X138960503Y-100007698D01* X139043200Y-99808049D01* X139043200Y-99788200D01* X142500858Y-99788200D01* X142457800Y-99892150D01* X142457800Y-100107850D01* X142540345Y-100307131D01* X142692869Y-100459655D01* X142892150Y-100542200D01* X143107850Y-100542200D01* X143307131Y-100459655D01* X143459655Y-100307131D01* X143542200Y-100107850D01* X143542200Y-99892150D01* X143499142Y-99788200D01* X148000000Y-99788200D01* X148110289Y-99766262D01* X148186709Y-99715200D01* X148531095Y-99715200D01* X148457800Y-99892150D01* X148457800Y-100107850D01* X148540345Y-100307131D01* X148692869Y-100459655D01* X148892150Y-100542200D01* X149107850Y-100542200D01* X149307131Y-100459655D01* X149459655Y-100307131D01* X149465860Y-100292150D01* X154357800Y-100292150D01* X154357800Y-100507850D01* X154440345Y-100707131D01* X154592869Y-100859655D01* X154792150Y-100942200D01* X155007850Y-100942200D01* X155207131Y-100859655D01* X155359655Y-100707131D01* X155442200Y-100507850D01* X155442200Y-100492150D01* X156457800Y-100492150D01* X156457800Y-100707850D01* X156540345Y-100907131D01* X156692869Y-101059655D01* X156892150Y-101142200D01* X157107850Y-101142200D01* X157307131Y-101059655D01* X157459655Y-100907131D01* X157465860Y-100892150D01* X160957800Y-100892150D01* X160957800Y-101107850D01* X161040345Y-101307131D01* X161192869Y-101459655D01* X161392150Y-101542200D01* X161607850Y-101542200D01* X161807131Y-101459655D01* X161874636Y-101392150D01* X168957800Y-101392150D01* X168957800Y-101607850D01* X169040345Y-101807131D01* X169192869Y-101959655D01* X169392150Y-102042200D01* X169607850Y-102042200D01* X169807131Y-101959655D01* X169959655Y-101807131D01* X170042200Y-101607850D01* X170042200Y-101392150D01* X169959655Y-101192869D01* X169807131Y-101040345D01* X169607850Y-100957800D01* X169392150Y-100957800D01* X169192869Y-101040345D01* X169040345Y-101192869D01* X168957800Y-101392150D01* X161874636Y-101392150D01* X161959655Y-101307131D01* X162042200Y-101107850D01* X162042200Y-100892150D01* X171557800Y-100892150D01* X171557800Y-101107850D01* X171640345Y-101307131D01* X171792869Y-101459655D01* X171992150Y-101542200D01* X172207850Y-101542200D01* X172407131Y-101459655D01* X172559655Y-101307131D01* X172642200Y-101107850D01* X172642200Y-100892150D01* X172559655Y-100692869D01* X172407131Y-100540345D01* X172207850Y-100457800D01* X171992150Y-100457800D01* X171792869Y-100540345D01* X171640345Y-100692869D01* X171557800Y-100892150D01* X162042200Y-100892150D01* X161959655Y-100692869D01* X161807131Y-100540345D01* X161607850Y-100457800D01* X161392150Y-100457800D01* X161192869Y-100540345D01* X161040345Y-100692869D01* X160957800Y-100892150D01* X157465860Y-100892150D01* X157542200Y-100707850D01* X157542200Y-100492150D01* X157459655Y-100292869D01* X157307131Y-100140345D01* X157107850Y-100057800D01* X156892150Y-100057800D01* X156692869Y-100140345D01* X156540345Y-100292869D01* X156457800Y-100492150D01* X155442200Y-100492150D01* X155442200Y-100292150D01* X155359655Y-100092869D01* X155207131Y-99940345D01* X155007850Y-99857800D01* X154792150Y-99857800D01* X154592869Y-99940345D01* X154440345Y-100092869D01* X154357800Y-100292150D01* X149465860Y-100292150D01* X149542200Y-100107850D01* X149542200Y-99892150D01* X149468905Y-99715200D01* X151428019Y-99715200D01* X151457800Y-99744981D01* X151457800Y-99807850D01* X151540345Y-100007131D01* X151692869Y-100159655D01* X151892150Y-100242200D01* X152107850Y-100242200D01* X152307131Y-100159655D01* X152459655Y-100007131D01* X152542200Y-99807850D01* X152542200Y-99592150D01* X152500779Y-99492150D01* X160957798Y-99492150D01* X160957798Y-99707850D01* X161040343Y-99907131D01* X161192867Y-100059655D01* X161392148Y-100142200D01* X161607848Y-100142200D01* X161807129Y-100059655D01* X161959653Y-99907131D01* X162042198Y-99707850D01* X162042198Y-99492150D01* X162657800Y-99492150D01* X162657800Y-99707850D01* X162740345Y-99907131D01* X162892869Y-100059655D01* X163092150Y-100142200D01* X163307850Y-100142200D01* X163507131Y-100059655D01* X163659655Y-99907131D01* X163742200Y-99707850D01* X163742200Y-99492150D01* X165757800Y-99492150D01* X165757800Y-99707850D01* X165840345Y-99907131D01* X165992869Y-100059655D01* X166192150Y-100142200D01* X166407850Y-100142200D01* X166607131Y-100059655D01* X166759655Y-99907131D01* X166842200Y-99707850D01* X166842200Y-99492150D01* X166857800Y-99492150D01* X166857800Y-99707850D01* X166940345Y-99907131D01* X167092869Y-100059655D01* X167292150Y-100142200D01* X167507850Y-100142200D01* X167707131Y-100059655D01* X167859655Y-99907131D01* X167942200Y-99707850D01* X167942200Y-99492150D01* X167900779Y-99392150D01* X170257800Y-99392150D01* X170257800Y-99607850D01* X170340345Y-99807131D01* X170492869Y-99959655D01* X170692150Y-100042200D01* X170907850Y-100042200D01* X171107131Y-99959655D01* X171259655Y-99807131D01* X171265860Y-99792150D01* X171557800Y-99792150D01* X171557800Y-100007850D01* X171640345Y-100207131D01* X171792869Y-100359655D01* X171992150Y-100442200D01* X172207850Y-100442200D01* X172407131Y-100359655D01* X172559655Y-100207131D01* X172642200Y-100007850D01* X172642200Y-99792150D01* X172559655Y-99592869D01* X172458936Y-99492150D01* X173157800Y-99492150D01* X173157800Y-99707850D01* X173240345Y-99907131D01* X173392869Y-100059655D01* X173592150Y-100142200D01* X173807850Y-100142200D01* X174007131Y-100059655D01* X174159655Y-99907131D01* X174242200Y-99707850D01* X174242200Y-99492150D01* X174200779Y-99392150D01* X174957800Y-99392150D01* X174957800Y-99607850D01* X175040345Y-99807131D01* X175192869Y-99959655D01* X175392150Y-100042200D01* X175607850Y-100042200D01* X175807131Y-99959655D01* X175959655Y-99807131D01* X176042200Y-99607850D01* X176042200Y-99392150D01* X175959655Y-99192869D01* X175807131Y-99040345D01* X175607850Y-98957800D01* X175392150Y-98957800D01* X175192869Y-99040345D01* X175040345Y-99192869D01* X174957800Y-99392150D01* X174200779Y-99392150D01* X174159655Y-99292869D01* X174007131Y-99140345D01* X173807850Y-99057800D01* X173592150Y-99057800D01* X173392869Y-99140345D01* X173240345Y-99292869D01* X173157800Y-99492150D01* X172458936Y-99492150D01* X172407131Y-99440345D01* X172207850Y-99357800D01* X171992150Y-99357800D01* X171792869Y-99440345D01* X171640345Y-99592869D01* X171557800Y-99792150D01* X171265860Y-99792150D01* X171342200Y-99607850D01* X171342200Y-99392150D01* X171259655Y-99192869D01* X171107131Y-99040345D01* X170907850Y-98957800D01* X170692150Y-98957800D01* X170492869Y-99040345D01* X170340345Y-99192869D01* X170257800Y-99392150D01* X167900779Y-99392150D01* X167859655Y-99292869D01* X167707131Y-99140345D01* X167507850Y-99057800D01* X167292150Y-99057800D01* X167092869Y-99140345D01* X166940345Y-99292869D01* X166857800Y-99492150D01* X166842200Y-99492150D01* X166759655Y-99292869D01* X166607131Y-99140345D01* X166407850Y-99057800D01* X166192150Y-99057800D01* X165992869Y-99140345D01* X165840345Y-99292869D01* X165757800Y-99492150D01* X163742200Y-99492150D01* X163659655Y-99292869D01* X163507131Y-99140345D01* X163307850Y-99057800D01* X163092150Y-99057800D01* X162892869Y-99140345D01* X162740345Y-99292869D01* X162657800Y-99492150D01* X162042198Y-99492150D01* X161959653Y-99292869D01* X161807129Y-99140345D01* X161607848Y-99057800D01* X161392148Y-99057800D01* X161192867Y-99140345D01* X161040343Y-99292869D01* X160957798Y-99492150D01* X152500779Y-99492150D01* X152459655Y-99392869D01* X152307131Y-99240345D01* X152107850Y-99157800D01* X152044981Y-99157800D01* X151922505Y-99035324D01* X151899342Y-99000658D01* X151762003Y-98908890D01* X151640893Y-98884800D01* X151640888Y-98884800D01* X151600000Y-98876667D01* X151559112Y-98884800D01* X149381986Y-98884800D01* X149459655Y-98807131D01* X149542200Y-98607850D01* X149542200Y-98492150D01* X157557800Y-98492150D01* X157557800Y-98707850D01* X157640345Y-98907131D01* X157792869Y-99059655D01* X157992150Y-99142200D01* X158207850Y-99142200D01* X158407131Y-99059655D01* X158559655Y-98907131D01* X158642200Y-98707850D01* X158642200Y-98492150D01* X158757800Y-98492150D01* X158757800Y-98707850D01* X158840345Y-98907131D01* X158992869Y-99059655D01* X159192150Y-99142200D01* X159407850Y-99142200D01* X159607131Y-99059655D01* X159759655Y-98907131D01* X159842200Y-98707850D01* X159842200Y-98492150D01* X159800779Y-98392150D01* X163457800Y-98392150D01* X163457800Y-98607850D01* X163540345Y-98807131D01* X163692869Y-98959655D01* X163892150Y-99042200D01* X164107850Y-99042200D01* X164307131Y-98959655D01* X164459655Y-98807131D01* X164542200Y-98607850D01* X164542200Y-98392150D01* X167657800Y-98392150D01* X167657800Y-98607850D01* X167740345Y-98807131D01* X167892869Y-98959655D01* X168092150Y-99042200D01* X168307850Y-99042200D01* X168507131Y-98959655D01* X168659655Y-98807131D01* X168742200Y-98607850D01* X168742200Y-98392150D01* X168957800Y-98392150D01* X168957800Y-98607850D01* X169040345Y-98807131D01* X169192869Y-98959655D01* X169392150Y-99042200D01* X169607850Y-99042200D01* X169807131Y-98959655D01* X169959655Y-98807131D01* X170042200Y-98607850D01* X170042200Y-98592150D01* X172257800Y-98592150D01* X172257800Y-98807850D01* X172340345Y-99007131D01* X172492869Y-99159655D01* X172692150Y-99242200D01* X172907850Y-99242200D01* X173107131Y-99159655D01* X173259655Y-99007131D01* X173342200Y-98807850D01* X173342200Y-98592150D01* X174157800Y-98592150D01* X174157800Y-98807850D01* X174240345Y-99007131D01* X174392869Y-99159655D01* X174592150Y-99242200D01* X174807850Y-99242200D01* X175007131Y-99159655D01* X175159655Y-99007131D01* X175242200Y-98807850D01* X175242200Y-98592150D01* X175159655Y-98392869D01* X175007131Y-98240345D01* X174807850Y-98157800D01* X174592150Y-98157800D01* X174392869Y-98240345D01* X174240345Y-98392869D01* X174157800Y-98592150D01* X173342200Y-98592150D01* X173259655Y-98392869D01* X173107131Y-98240345D01* X172907850Y-98157800D01* X172692150Y-98157800D01* X172492869Y-98240345D01* X172340345Y-98392869D01* X172257800Y-98592150D01* X170042200Y-98592150D01* X170042200Y-98392150D01* X169959655Y-98192869D01* X169807131Y-98040345D01* X169607850Y-97957800D01* X169392150Y-97957800D01* X169192869Y-98040345D01* X169040345Y-98192869D01* X168957800Y-98392150D01* X168742200Y-98392150D01* X168659655Y-98192869D01* X168507131Y-98040345D01* X168307850Y-97957800D01* X168092150Y-97957800D01* X167892869Y-98040345D01* X167740345Y-98192869D01* X167657800Y-98392150D01* X164542200Y-98392150D01* X164459655Y-98192869D01* X164307131Y-98040345D01* X164107850Y-97957800D01* X163892150Y-97957800D01* X163692869Y-98040345D01* X163540345Y-98192869D01* X163457800Y-98392150D01* X159800779Y-98392150D01* X159759655Y-98292869D01* X159607131Y-98140345D01* X159407850Y-98057800D01* X159192150Y-98057800D01* X158992869Y-98140345D01* X158840345Y-98292869D01* X158757800Y-98492150D01* X158642200Y-98492150D01* X158559655Y-98292869D01* X158407131Y-98140345D01* X158207850Y-98057800D01* X157992150Y-98057800D01* X157792869Y-98140345D01* X157640345Y-98292869D01* X157557800Y-98492150D01* X149542200Y-98492150D01* X149542200Y-98392150D01* X149459655Y-98192869D01* X149307131Y-98040345D01* X149107850Y-97957800D01* X148892150Y-97957800D01* X148692869Y-98040345D01* X148540345Y-98192869D01* X148457800Y-98392150D01* X148457800Y-98607850D01* X148540345Y-98807131D01* X148618014Y-98884800D01* X148288200Y-98884800D01* X148288200Y-96502254D01* X152608600Y-96502254D01* X152608600Y-96697746D01* X152683411Y-96878356D01* X152821644Y-97016589D01* X153002254Y-97091400D01* X153197746Y-97091400D01* X153378356Y-97016589D01* X153516589Y-96878356D01* X153591400Y-96697746D01* X153591400Y-96502254D01* X153545794Y-96392150D01* X165457800Y-96392150D01* X165457800Y-96607850D01* X165540345Y-96807131D01* X165692869Y-96959655D01* X165892150Y-97042200D01* X166107850Y-97042200D01* X166307131Y-96959655D01* X166459655Y-96807131D01* X166542200Y-96607850D01* X166542200Y-96392150D01* X166459655Y-96192869D01* X166307131Y-96040345D01* X166107850Y-95957800D01* X165892150Y-95957800D01* X165692869Y-96040345D01* X165540345Y-96192869D01* X165457800Y-96392150D01* X153545794Y-96392150D01* X153516589Y-96321644D01* X153378356Y-96183411D01* X153197746Y-96108600D01* X153002254Y-96108600D01* X152821644Y-96183411D01* X152683411Y-96321644D01* X152608600Y-96502254D01* X148288200Y-96502254D01* X148288200Y-94392150D01* X151357800Y-94392150D01* X151357800Y-94607850D01* X151440345Y-94807131D01* X151592869Y-94959655D01* X151792150Y-95042200D01* X152007850Y-95042200D01* X152207131Y-94959655D01* X152359655Y-94807131D01* X152442200Y-94607850D01* X152442200Y-94392150D01* X152957800Y-94392150D01* X152957800Y-94607850D01* X153040345Y-94807131D01* X153192869Y-94959655D01* X153392150Y-95042200D01* X153607850Y-95042200D01* X153807131Y-94959655D01* X153959655Y-94807131D01* X154042200Y-94607850D01* X154042200Y-94392150D01* X157957800Y-94392150D01* X157957800Y-94607850D01* X158040345Y-94807131D01* X158192869Y-94959655D01* X158392150Y-95042200D01* X158607850Y-95042200D01* X158807131Y-94959655D01* X158959655Y-94807131D01* X159042200Y-94607850D01* X159042200Y-94392150D01* X168957800Y-94392150D01* X168957800Y-94607850D01* X169040345Y-94807131D01* X169192869Y-94959655D01* X169392150Y-95042200D01* X169607850Y-95042200D01* X169807131Y-94959655D01* X169959655Y-94807131D01* X170042200Y-94607850D01* X170042200Y-94392150D01* X169959655Y-94192869D01* X169807131Y-94040345D01* X169607850Y-93957800D01* X169392150Y-93957800D01* X169192869Y-94040345D01* X169040345Y-94192869D01* X168957800Y-94392150D01* X159042200Y-94392150D01* X158959655Y-94192869D01* X158807131Y-94040345D01* X158607850Y-93957800D01* X158392150Y-93957800D01* X158192869Y-94040345D01* X158040345Y-94192869D01* X157957800Y-94392150D01* X154042200Y-94392150D01* X153959655Y-94192869D01* X153807131Y-94040345D01* X153607850Y-93957800D01* X153392150Y-93957800D01* X153192869Y-94040345D01* X153040345Y-94192869D01* X152957800Y-94392150D01* X152442200Y-94392150D01* X152359655Y-94192869D01* X152207131Y-94040345D01* X152007850Y-93957800D01* X151792150Y-93957800D01* X151592869Y-94040345D01* X151440345Y-94192869D01* X151357800Y-94392150D01* X148288200Y-94392150D01* X148288200Y-93692150D01* X186657800Y-93692150D01* X186657800Y-93907850D01* X186740345Y-94107131D01* X186892869Y-94259655D01* X187092150Y-94342200D01* X187307850Y-94342200D01* X187507131Y-94259655D01* X187659655Y-94107131D01* X187742200Y-93907850D01* X187742200Y-93692150D01* X187659655Y-93492869D01* X187507131Y-93340345D01* X187307850Y-93257800D01* X187092150Y-93257800D01* X186892869Y-93340345D01* X186740345Y-93492869D01* X186657800Y-93692150D01* X148288200Y-93692150D01* X148288200Y-92392150D01* X152957800Y-92392150D01* X152957800Y-92607850D01* X153040345Y-92807131D01* X153192869Y-92959655D01* X153392150Y-93042200D01* X153607850Y-93042200D01* X153807131Y-92959655D01* X153959655Y-92807131D01* X154042200Y-92607850D01* X154042200Y-92392150D01* X153959655Y-92192869D01* X153807131Y-92040345D01* X153607850Y-91957800D01* X153392150Y-91957800D01* X153192869Y-92040345D01* X153040345Y-92192869D01* X152957800Y-92392150D01* X148288200Y-92392150D01* X148288200Y-90392150D01* X163657800Y-90392150D01* X163657800Y-90607850D01* X163740345Y-90807131D01* X163892869Y-90959655D01* X164092150Y-91042200D01* X164307850Y-91042200D01* X164507131Y-90959655D01* X164659655Y-90807131D01* X164742200Y-90607850D01* X164742200Y-90392150D01* X166057800Y-90392150D01* X166057800Y-90607850D01* X166140345Y-90807131D01* X166292869Y-90959655D01* X166492150Y-91042200D01* X166707850Y-91042200D01* X166907131Y-90959655D01* X167059655Y-90807131D01* X167142200Y-90607850D01* X167142200Y-90392150D01* X167059655Y-90192869D01* X166907131Y-90040345D01* X166707850Y-89957800D01* X166492150Y-89957800D01* X166292869Y-90040345D01* X166140345Y-90192869D01* X166057800Y-90392150D01* X164742200Y-90392150D01* X164659655Y-90192869D01* X164507131Y-90040345D01* X164307850Y-89957800D01* X164092150Y-89957800D01* X163892869Y-90040345D01* X163740345Y-90192869D01* X163657800Y-90392150D01* X148288200Y-90392150D01* X148288200Y-85500000D01* X148266262Y-85389711D01* X148203788Y-85296212D01* X146999527Y-84091951D01* X149956800Y-84091951D01* X149956800Y-84308049D01* X150039497Y-84507698D01* X150192302Y-84660503D01* X150391951Y-84743200D01* X150608049Y-84743200D01* X150807698Y-84660503D01* X150960503Y-84507698D01* X151043200Y-84308049D01* X151043200Y-84092140D01* X151157800Y-84092140D01* X151157800Y-84307840D01* X151240345Y-84507121D01* X151392869Y-84659645D01* X151592150Y-84742190D01* X151807850Y-84742190D01* X152007131Y-84659645D01* X152159655Y-84507121D01* X152242200Y-84307840D01* X152242200Y-84092140D01* X152242122Y-84091951D01* X152356800Y-84091951D01* X152356800Y-84308049D01* X152439497Y-84507698D01* X152592302Y-84660503D01* X152791951Y-84743200D01* X153008049Y-84743200D01* X153207698Y-84660503D01* X153360503Y-84507698D01* X153443200Y-84308049D01* X153443200Y-84292150D01* X170057800Y-84292150D01* X170057800Y-84507850D01* X170140345Y-84707131D01* X170292869Y-84859655D01* X170492150Y-84942200D01* X170707850Y-84942200D01* X170907131Y-84859655D01* X171059655Y-84707131D01* X171142200Y-84507850D01* X171142200Y-84292150D01* X171100779Y-84192150D01* X177057800Y-84192150D01* X177057800Y-84407850D01* X177140345Y-84607131D01* X177292869Y-84759655D01* X177492150Y-84842200D01* X177707850Y-84842200D01* X177907131Y-84759655D01* X178059655Y-84607131D01* X178142200Y-84407850D01* X178142200Y-84192150D01* X178059655Y-83992869D01* X177907131Y-83840345D01* X177707850Y-83757800D01* X177492150Y-83757800D01* X177292869Y-83840345D01* X177140345Y-83992869D01* X177057800Y-84192150D01* X171100779Y-84192150D01* X171059655Y-84092869D01* X170907131Y-83940345D01* X170707850Y-83857800D01* X170492150Y-83857800D01* X170292869Y-83940345D01* X170140345Y-84092869D01* X170057800Y-84292150D01* X153443200Y-84292150D01* X153443200Y-84091951D01* X153360503Y-83892302D01* X153207698Y-83739497D01* X153008049Y-83656800D01* X152791951Y-83656800D01* X152592302Y-83739497D01* X152439497Y-83892302D01* X152356800Y-84091951D01* X152242122Y-84091951D01* X152159655Y-83892859D01* X152007131Y-83740335D01* X151807850Y-83657790D01* X151592150Y-83657790D01* X151392869Y-83740335D01* X151240345Y-83892859D01* X151157800Y-84092140D01* X151043200Y-84092140D01* X151043200Y-84091951D01* X150960503Y-83892302D01* X150807698Y-83739497D01* X150608049Y-83656800D01* X150391951Y-83656800D01* X150192302Y-83739497D01* X150039497Y-83892302D01* X149956800Y-84091951D01* X146999527Y-84091951D01* X144007576Y-81100000D01* X144759502Y-81100000D01* X144847840Y-81544103D01* X145099404Y-81920596D01* X145475897Y-82172160D01* X145807901Y-82238200D01* X146032099Y-82238200D01* X146364103Y-82172160D01* X146740596Y-81920596D01* X146992160Y-81544103D01* X147080498Y-81100000D01* X147299502Y-81100000D01* X147387840Y-81544103D01* X147639404Y-81920596D01* X148015897Y-82172160D01* X148347901Y-82238200D01* X148572099Y-82238200D01* X148904103Y-82172160D01* X149280596Y-81920596D01* X149532160Y-81544103D01* X149620498Y-81100000D01* X149575464Y-80873598D01* X149861800Y-80873598D01* X149861800Y-81326402D01* X150035080Y-81744739D01* X150355261Y-82064920D01* X150773598Y-82238200D01* X151226402Y-82238200D01* X151644739Y-82064920D01* X151964920Y-81744739D01* X152138200Y-81326402D01* X152138200Y-80992150D01* X184357800Y-80992150D01* X184357800Y-81207850D01* X184440345Y-81407131D01* X184592869Y-81559655D01* X184792150Y-81642200D01* X185007850Y-81642200D01* X185207131Y-81559655D01* X185359655Y-81407131D01* X185442200Y-81207850D01* X185442200Y-80992150D01* X185359655Y-80792869D01* X185207131Y-80640345D01* X185007850Y-80557800D01* X184792150Y-80557800D01* X184592869Y-80640345D01* X184440345Y-80792869D01* X184357800Y-80992150D01* X152138200Y-80992150D01* X152138200Y-80873598D01* X151964920Y-80455261D01* X151644739Y-80135080D01* X151226402Y-79961800D01* X150773598Y-79961800D01* X150355261Y-80135080D01* X150035080Y-80455261D01* X149861800Y-80873598D01* X149575464Y-80873598D01* X149532160Y-80655897D01* X149280596Y-80279404D01* X148904103Y-80027840D01* X148572099Y-79961800D01* X148347901Y-79961800D01* X148015897Y-80027840D01* X147639404Y-80279404D01* X147387840Y-80655897D01* X147299502Y-81100000D01* X147080498Y-81100000D01* X146992160Y-80655897D01* X146740596Y-80279404D01* X146364103Y-80027840D01* X146032099Y-79961800D01* X145807901Y-79961800D01* X145475897Y-80027840D01* X145099404Y-80279404D01* X144847840Y-80655897D01* X144759502Y-81100000D01* X144007576Y-81100000D01* X142799726Y-79892150D01* X167557800Y-79892150D01* X167557800Y-80107850D01* X167640345Y-80307131D01* X167792869Y-80459655D01* X167992150Y-80542200D01* X168207850Y-80542200D01* X168407131Y-80459655D01* X168559655Y-80307131D01* X168642200Y-80107850D01* X168642200Y-79892150D01* X168559655Y-79692869D01* X168458936Y-79592150D01* X177957800Y-79592150D01* X177957800Y-79807850D01* X178040345Y-80007131D01* X178192869Y-80159655D01* X178392150Y-80242200D01* X178607850Y-80242200D01* X178807131Y-80159655D01* X178959655Y-80007131D01* X179042200Y-79807850D01* X179042200Y-79592150D01* X178959655Y-79392869D01* X178858936Y-79292150D01* X185657800Y-79292150D01* X185657800Y-79507850D01* X185740345Y-79707131D01* X185892869Y-79859655D01* X186092150Y-79942200D01* X186307850Y-79942200D01* X186507131Y-79859655D01* X186659655Y-79707131D01* X186742200Y-79507850D01* X186742200Y-79292150D01* X186659655Y-79092869D01* X186507131Y-78940345D01* X186307850Y-78857800D01* X186092150Y-78857800D01* X185892869Y-78940345D01* X185740345Y-79092869D01* X185657800Y-79292150D01* X178858936Y-79292150D01* X178807131Y-79240345D01* X178607850Y-79157800D01* X178392150Y-79157800D01* X178192869Y-79240345D01* X178040345Y-79392869D01* X177957800Y-79592150D01* X168458936Y-79592150D01* X168408986Y-79542200D01* X168507850Y-79542200D01* X168707131Y-79459655D01* X168859655Y-79307131D01* X168942200Y-79107850D01* X168942200Y-78892150D01* X168859655Y-78692869D01* X168707131Y-78540345D01* X168507850Y-78457800D01* X168292150Y-78457800D01* X168092869Y-78540345D01* X167940345Y-78692869D01* X167857800Y-78892150D01* X167857800Y-79107850D01* X167940345Y-79307131D01* X168091014Y-79457800D01* X167992150Y-79457800D01* X167792869Y-79540345D01* X167640345Y-79692869D01* X167557800Y-79892150D01* X142799726Y-79892150D01* X140599527Y-77691951D01* X144756800Y-77691951D01* X144756800Y-77908049D01* X144839497Y-78107698D01* X144992302Y-78260503D01* X145191951Y-78343200D01* X145388599Y-78343200D01* X145339497Y-78392302D01* X145256800Y-78591951D01* X145256800Y-78808049D01* X145339497Y-79007698D01* X145492302Y-79160503D01* X145691951Y-79243200D01* X145908049Y-79243200D01* X146107698Y-79160503D01* X146260503Y-79007698D01* X146343200Y-78808049D01* X146343200Y-78691951D01* X148656800Y-78691951D01* X148656800Y-78908049D01* X148739497Y-79107698D01* X148892302Y-79260503D01* X149091951Y-79343200D01* X149308049Y-79343200D01* X149507698Y-79260503D01* X149660503Y-79107698D01* X149743200Y-78908049D01* X149743200Y-78891951D01* X151556800Y-78891951D01* X151556800Y-79108049D01* X151639497Y-79307698D01* X151792302Y-79460503D01* X151991951Y-79543200D01* X152208049Y-79543200D01* X152407698Y-79460503D01* X152560503Y-79307698D01* X152643200Y-79108049D01* X152643200Y-78891951D01* X152638017Y-78879439D01* X152791951Y-78943200D01* X153008049Y-78943200D01* X153021868Y-78937476D01* X152957800Y-79092150D01* X152957800Y-79307850D01* X153040345Y-79507131D01* X153192869Y-79659655D01* X153392150Y-79742200D01* X153607850Y-79742200D01* X153807131Y-79659655D01* X153959655Y-79507131D01* X154042200Y-79307850D01* X154042200Y-79092150D01* X153959655Y-78892869D01* X153807131Y-78740345D01* X153607850Y-78657800D01* X153392150Y-78657800D01* X153378898Y-78663289D01* X153443200Y-78508049D01* X153443200Y-78291951D01* X153360503Y-78092302D01* X153318201Y-78050000D01* X153460503Y-77907698D01* X153543200Y-77708049D01* X153543200Y-77491951D01* X153460503Y-77292302D01* X153307698Y-77139497D01* X153108049Y-77056800D01* X152891951Y-77056800D01* X152692302Y-77139497D01* X152539497Y-77292302D01* X152456800Y-77491951D01* X152456800Y-77708049D01* X152539497Y-77907698D01* X152581799Y-77950000D01* X152439497Y-78092302D01* X152356800Y-78291951D01* X152356800Y-78508049D01* X152361983Y-78520561D01* X152208049Y-78456800D01* X151991951Y-78456800D01* X151792302Y-78539497D01* X151639497Y-78692302D01* X151556800Y-78891951D01* X149743200Y-78891951D01* X149743200Y-78691951D01* X149660503Y-78492302D01* X149507698Y-78339497D01* X149308049Y-78256800D01* X149091951Y-78256800D01* X148892302Y-78339497D01* X148739497Y-78492302D01* X148656800Y-78691951D01* X146343200Y-78691951D01* X146343200Y-78591951D01* X146260503Y-78392302D01* X146107698Y-78239497D01* X145908049Y-78156800D01* X145711401Y-78156800D01* X145760503Y-78107698D01* X145843200Y-77908049D01* X145843200Y-77691951D01* X145760503Y-77492302D01* X145607698Y-77339497D01* X145408049Y-77256800D01* X145191951Y-77256800D01* X144992302Y-77339497D01* X144839497Y-77492302D01* X144756800Y-77691951D01* X140599527Y-77691951D01* X139799527Y-76891951D01* X141856800Y-76891951D01* X141856800Y-77108049D01* X141939497Y-77307698D01* X142092302Y-77460503D01* X142291951Y-77543200D01* X142508049Y-77543200D01* X142707698Y-77460503D01* X142860503Y-77307698D01* X142943200Y-77108049D01* X142943200Y-76891951D01* X142860503Y-76692302D01* X142707698Y-76539497D01* X142508049Y-76456800D01* X142291951Y-76456800D01* X142092302Y-76539497D01* X141939497Y-76692302D01* X141856800Y-76891951D01* X139799527Y-76891951D01* X138291400Y-75383824D01* X138291400Y-75202254D01* X138216589Y-75021644D01* X138136896Y-74941951D01* X141006800Y-74941951D01* X141006800Y-75158049D01* X141089497Y-75357698D01* X141242302Y-75510503D01* X141441951Y-75593200D01* X141658049Y-75593200D01* X141661064Y-75591951D01* X142556800Y-75591951D01* X142556800Y-75808049D01* X142639497Y-76007698D01* X142792302Y-76160503D01* X142991951Y-76243200D01* X143208049Y-76243200D01* X143407698Y-76160503D01* X143560503Y-76007698D01* X143587736Y-75941951D01* X145456800Y-75941951D01* X145456800Y-76158049D01* X145539497Y-76357698D01* X145692302Y-76510503D01* X145891951Y-76593200D01* X146108049Y-76593200D01* X146307698Y-76510503D01* X146460503Y-76357698D01* X146529074Y-76192150D01* X152857800Y-76192150D01* X152857800Y-76407850D01* X152940345Y-76607131D01* X153092869Y-76759655D01* X153292150Y-76842200D01* X153507850Y-76842200D01* X153707131Y-76759655D01* X153859655Y-76607131D01* X153942200Y-76407850D01* X153942200Y-76192150D01* X153859655Y-75992869D01* X153758936Y-75892150D01* X156957800Y-75892150D01* X156957800Y-76107850D01* X157040345Y-76307131D01* X157192869Y-76459655D01* X157290270Y-76500000D01* X157192869Y-76540345D01* X157040345Y-76692869D01* X156957800Y-76892150D01* X156957800Y-77107850D01* X157040345Y-77307131D01* X157192869Y-77459655D01* X157392150Y-77542200D01* X157607850Y-77542200D01* X157807131Y-77459655D01* X157874636Y-77392150D01* X158457800Y-77392150D01* X158457800Y-77607850D01* X158540345Y-77807131D01* X158692869Y-77959655D01* X158892150Y-78042200D01* X159107850Y-78042200D01* X159228681Y-77992150D01* X159757800Y-77992150D01* X159757800Y-78207850D01* X159840345Y-78407131D01* X159992869Y-78559655D01* X160192150Y-78642200D01* X160407850Y-78642200D01* X160607131Y-78559655D01* X160750000Y-78416786D01* X160892869Y-78559655D01* X161092150Y-78642200D01* X161307850Y-78642200D01* X161507131Y-78559655D01* X161659655Y-78407131D01* X161742200Y-78207850D01* X161742200Y-78192150D01* X181257800Y-78192150D01* X181257800Y-78407850D01* X181340345Y-78607131D01* X181492869Y-78759655D01* X181692150Y-78842200D01* X181907850Y-78842200D01* X182107131Y-78759655D01* X182259655Y-78607131D01* X182342200Y-78407850D01* X182342200Y-78192150D01* X182259655Y-77992869D01* X182107131Y-77840345D01* X181907850Y-77757800D01* X181692150Y-77757800D01* X181492869Y-77840345D01* X181340345Y-77992869D01* X181257800Y-78192150D01* X161742200Y-78192150D01* X161742200Y-77992150D01* X161659655Y-77792869D01* X161507131Y-77640345D01* X161307850Y-77557800D01* X161092150Y-77557800D01* X160892869Y-77640345D01* X160750000Y-77783214D01* X160607131Y-77640345D01* X160407850Y-77557800D01* X160192150Y-77557800D01* X159992869Y-77640345D01* X159840345Y-77792869D01* X159757800Y-77992150D01* X159228681Y-77992150D01* X159307131Y-77959655D01* X159459655Y-77807131D01* X159542200Y-77607850D01* X159542200Y-77392150D01* X159459655Y-77192869D01* X159307131Y-77040345D01* X159107850Y-76957800D01* X158892150Y-76957800D01* X158692869Y-77040345D01* X158540345Y-77192869D01* X158457800Y-77392150D01* X157874636Y-77392150D01* X157959655Y-77307131D01* X158042200Y-77107850D01* X158042200Y-76892150D01* X157959655Y-76692869D01* X157807131Y-76540345D01* X157709730Y-76500000D01* X157807131Y-76459655D01* X157959655Y-76307131D01* X158042200Y-76107850D01* X158042200Y-76020000D01* X179139502Y-76020000D01* X179227840Y-76464103D01* X179479404Y-76840596D01* X179855897Y-77092160D01* X180187901Y-77158200D01* X180412099Y-77158200D01* X180744103Y-77092160D01* X181120596Y-76840596D01* X181372160Y-76464103D01* X181460498Y-76020000D01* X181679502Y-76020000D01* X181767840Y-76464103D01* X182019404Y-76840596D01* X182395897Y-77092160D01* X182727901Y-77158200D01* X182952099Y-77158200D01* X183233357Y-77102254D01* X186708600Y-77102254D01* X186708600Y-77297746D01* X186783411Y-77478356D01* X186921644Y-77616589D01* X187102254Y-77691400D01* X187297746Y-77691400D01* X187478356Y-77616589D01* X187616589Y-77478356D01* X187691400Y-77297746D01* X187691400Y-77102254D01* X187616589Y-76921644D01* X187478356Y-76783411D01* X187297746Y-76708600D01* X187102254Y-76708600D01* X186921644Y-76783411D01* X186783411Y-76921644D01* X186708600Y-77102254D01* X183233357Y-77102254D01* X183284103Y-77092160D01* X183660596Y-76840596D01* X183912160Y-76464103D01* X184000498Y-76020000D01* X183912160Y-75575897D01* X183662501Y-75202254D01* X186708600Y-75202254D01* X186708600Y-75397746D01* X186783411Y-75578356D01* X186921644Y-75716589D01* X187102254Y-75791400D01* X187297746Y-75791400D01* X187478356Y-75716589D01* X187616589Y-75578356D01* X187691400Y-75397746D01* X187691400Y-75202254D01* X187616589Y-75021644D01* X187478356Y-74883411D01* X187297746Y-74808600D01* X187102254Y-74808600D01* X186921644Y-74883411D01* X186783411Y-75021644D01* X186708600Y-75202254D01* X183662501Y-75202254D01* X183660596Y-75199404D01* X183284103Y-74947840D01* X182952099Y-74881800D01* X182727901Y-74881800D01* X182395897Y-74947840D01* X182019404Y-75199404D01* X181767840Y-75575897D01* X181679502Y-76020000D01* X181460498Y-76020000D01* X181372160Y-75575897D01* X181120596Y-75199404D01* X180744103Y-74947840D01* X180412099Y-74881800D01* X180187901Y-74881800D01* X179855897Y-74947840D01* X179479404Y-75199404D01* X179227840Y-75575897D01* X179139502Y-76020000D01* X158042200Y-76020000D01* X158042200Y-75892150D01* X157959655Y-75692869D01* X157807131Y-75540345D01* X157607850Y-75457800D01* X157392150Y-75457800D01* X157192869Y-75540345D01* X157040345Y-75692869D01* X156957800Y-75892150D01* X153758936Y-75892150D01* X153707131Y-75840345D01* X153507850Y-75757800D01* X153292150Y-75757800D01* X153092869Y-75840345D01* X152940345Y-75992869D01* X152857800Y-76192150D01* X146529074Y-76192150D01* X146543200Y-76158049D01* X146543200Y-75941951D01* X146460503Y-75742302D01* X146307698Y-75589497D01* X146108049Y-75506800D01* X145891951Y-75506800D01* X145692302Y-75589497D01* X145539497Y-75742302D01* X145456800Y-75941951D01* X143587736Y-75941951D01* X143643200Y-75808049D01* X143643200Y-75591951D01* X143560503Y-75392302D01* X143407698Y-75239497D01* X143208049Y-75156800D01* X142991951Y-75156800D01* X142792302Y-75239497D01* X142639497Y-75392302D01* X142556800Y-75591951D01* X141661064Y-75591951D01* X141857698Y-75510503D01* X142010503Y-75357698D01* X142093200Y-75158049D01* X142093200Y-75091951D01* X149456800Y-75091951D01* X149456800Y-75308049D01* X149539497Y-75507698D01* X149692302Y-75660503D01* X149891951Y-75743200D01* X150108049Y-75743200D01* X150307698Y-75660503D01* X150460503Y-75507698D01* X150543200Y-75308049D01* X150543200Y-75091951D01* X150460503Y-74892302D01* X150307698Y-74739497D01* X150108049Y-74656800D01* X149891951Y-74656800D01* X149692302Y-74739497D01* X149539497Y-74892302D01* X149456800Y-75091951D01* X142093200Y-75091951D01* X142093200Y-74941951D01* X142031136Y-74792114D01* X142263108Y-74888200D01* X142536892Y-74888200D01* X142789834Y-74783428D01* X142983428Y-74589834D01* X143088200Y-74336892D01* X143088200Y-74063108D01* X143058726Y-73991951D01* X147656800Y-73991951D01* X147656800Y-74208049D01* X147739497Y-74407698D01* X147892302Y-74560503D01* X148091951Y-74643200D01* X148308049Y-74643200D01* X148507698Y-74560503D01* X148660503Y-74407698D01* X148666943Y-74392150D01* X152857800Y-74392150D01* X152857800Y-74607850D01* X152940345Y-74807131D01* X153092869Y-74959655D01* X153292150Y-75042200D01* X153507850Y-75042200D01* X153707131Y-74959655D01* X153859655Y-74807131D01* X153942200Y-74607850D01* X153942200Y-74392150D01* X153859655Y-74192869D01* X153858936Y-74192150D01* X168857800Y-74192150D01* X168857800Y-74407850D01* X168940345Y-74607131D01* X169092869Y-74759655D01* X169292150Y-74842200D01* X169507850Y-74842200D01* X169707131Y-74759655D01* X169859655Y-74607131D01* X169942200Y-74407850D01* X169942200Y-74192150D01* X169859655Y-73992869D01* X169707131Y-73840345D01* X169507850Y-73757800D01* X169292150Y-73757800D01* X169092869Y-73840345D01* X168940345Y-73992869D01* X168857800Y-74192150D01* X153858936Y-74192150D01* X153707131Y-74040345D01* X153507850Y-73957800D01* X153292150Y-73957800D01* X153092869Y-74040345D01* X152940345Y-74192869D01* X152857800Y-74392150D01* X148666943Y-74392150D01* X148743200Y-74208049D01* X148743200Y-73991951D01* X148660503Y-73792302D01* X148507698Y-73639497D01* X148308049Y-73556800D01* X148091951Y-73556800D01* X147892302Y-73639497D01* X147739497Y-73792302D01* X147656800Y-73991951D01* X143058726Y-73991951D01* X142983428Y-73810166D01* X142789834Y-73616572D01* X142536892Y-73511800D01* X142263108Y-73511800D01* X142010166Y-73616572D01* X141816572Y-73810166D01* X141711800Y-74063108D01* X141711800Y-74336892D01* X141807886Y-74568864D01* X141658049Y-74506800D01* X141441951Y-74506800D01* X141242302Y-74589497D01* X141089497Y-74742302D01* X141006800Y-74941951D01* X138136896Y-74941951D01* X138094945Y-74900000D01* X138216589Y-74778356D01* X138291400Y-74597746D01* X138291400Y-74402254D01* X138216589Y-74221644D01* X138078356Y-74083411D01* X137897746Y-74008600D01* X137702254Y-74008600D01* X137521644Y-74083411D01* X137383411Y-74221644D01* X137308600Y-74402254D01* X137308600Y-74597746D01* X137355843Y-74711800D01* X131717534Y-74711800D01* X131742200Y-74652250D01* X131742200Y-74436550D01* X131659655Y-74237269D01* X131507131Y-74084745D01* X131307850Y-74002200D01* X131092150Y-74002200D01* X130892869Y-74084745D01* X130740345Y-74237269D01* X130657800Y-74436550D01* X130657800Y-74652250D01* X130682466Y-74711800D01* X125944157Y-74711800D01* X125991400Y-74597746D01* X125991400Y-74402254D01* X125916589Y-74221644D01* X125778356Y-74083411D01* X125597746Y-74008600D01* X125402254Y-74008600D01* X125221644Y-74083411D01* X125083411Y-74221644D01* X125008600Y-74402254D01* X125008600Y-74597746D01* X125055843Y-74711800D01* X124944157Y-74711800D01* X124991400Y-74597746D01* X124991400Y-74402254D01* X124916589Y-74221644D01* X124778356Y-74083411D01* X124597746Y-74008600D01* X124402254Y-74008600D01* X124221644Y-74083411D01* X124083411Y-74221644D01* X124008600Y-74402254D01* X124008600Y-74597746D01* X124055843Y-74711800D01* X123944157Y-74711800D01* X123991400Y-74597746D01* X123991400Y-74402254D01* X123916589Y-74221644D01* X123778356Y-74083411D01* X123597746Y-74008600D01* X123402254Y-74008600D01* X123221644Y-74083411D01* X123083411Y-74221644D01* X123008600Y-74402254D01* X123008600Y-74597746D01* X123055843Y-74711800D01* X121944157Y-74711800D01* X121991400Y-74597746D01* X121991400Y-74402254D01* X121916589Y-74221644D01* X121778356Y-74083411D01* X121597746Y-74008600D01* X121402254Y-74008600D01* X121221644Y-74083411D01* X121083411Y-74221644D01* X121008600Y-74402254D01* X121008600Y-74597746D01* X121055843Y-74711800D01* X120944157Y-74711800D01* X120991400Y-74597746D01* X120991400Y-74402254D01* X120916589Y-74221644D01* X120778356Y-74083411D01* X120597746Y-74008600D01* X120402254Y-74008600D01* X120221644Y-74083411D01* X120083411Y-74221644D01* X120008600Y-74402254D01* X120008600Y-74597746D01* X120055843Y-74711800D01* X118944157Y-74711800D01* X118991400Y-74597746D01* X118991400Y-74402254D01* X118916589Y-74221644D01* X118778356Y-74083411D01* X118597746Y-74008600D01* X118402254Y-74008600D01* X118221644Y-74083411D01* X118083411Y-74221644D01* X118008600Y-74402254D01* X118008600Y-74597746D01* X118055843Y-74711800D01* X117944157Y-74711800D01* X117991400Y-74597746D01* X117991400Y-74402254D01* X117916589Y-74221644D01* X117778356Y-74083411D01* X117597746Y-74008600D01* X117402254Y-74008600D01* X117221644Y-74083411D01* X117083411Y-74221644D01* X117008600Y-74402254D01* X117008600Y-74597746D01* X117055843Y-74711800D01* X116944157Y-74711800D01* X116991400Y-74597746D01* X116991400Y-74402254D01* X116916589Y-74221644D01* X116778356Y-74083411D01* X116597746Y-74008600D01* X116402254Y-74008600D01* X116221644Y-74083411D01* X116083411Y-74221644D01* X116008600Y-74402254D01* X116008600Y-74597746D01* X116055843Y-74711800D01* X115944157Y-74711800D01* X115991400Y-74597746D01* X115991400Y-74402254D01* X115916589Y-74221644D01* X115778356Y-74083411D01* X115597746Y-74008600D01* X115402254Y-74008600D01* X115221644Y-74083411D01* X115083411Y-74221644D01* X115008600Y-74402254D01* X115008600Y-74597746D01* X115055843Y-74711800D01* X114944157Y-74711800D01* X114991400Y-74597746D01* X114991400Y-74402254D01* X114916589Y-74221644D01* X114778356Y-74083411D01* X114597746Y-74008600D01* X114402254Y-74008600D01* X114221644Y-74083411D01* X114083411Y-74221644D01* X114008600Y-74402254D01* X114008600Y-74597746D01* X114055843Y-74711800D01* X113944157Y-74711800D01* X113991400Y-74597746D01* X113991400Y-74402254D01* X113916589Y-74221644D01* X113778356Y-74083411D01* X113597746Y-74008600D01* X113402254Y-74008600D01* X113221644Y-74083411D01* X113083411Y-74221644D01* X113008600Y-74402254D01* X113008600Y-74597746D01* X113055843Y-74711800D01* X111944157Y-74711800D01* X111991400Y-74597746D01* X111991400Y-74402254D01* X111916589Y-74221644D01* X111778356Y-74083411D01* X111597746Y-74008600D01* X111402254Y-74008600D01* X111221644Y-74083411D01* X111083411Y-74221644D01* X111008600Y-74402254D01* X111008600Y-74597746D01* X111055843Y-74711800D01* X110944157Y-74711800D01* X110991400Y-74597746D01* X110991400Y-74402254D01* X110916589Y-74221644D01* X110778356Y-74083411D01* X110597746Y-74008600D01* X110402254Y-74008600D01* X110221644Y-74083411D01* X110083411Y-74221644D01* X110008600Y-74402254D01* X110008600Y-74597746D01* X110055843Y-74711800D01* X110000000Y-74711800D01* X109889711Y-74733738D01* X109796212Y-74796212D01* X109733738Y-74889711D01* X109711800Y-75000000D01* X109711800Y-77055843D01* X109597746Y-77008600D01* X109402254Y-77008600D01* X109221644Y-77083411D01* X109083411Y-77221644D01* X109008600Y-77402254D01* X108991400Y-77402254D01* X108916589Y-77221644D01* X108778356Y-77083411D01* X108597746Y-77008600D01* X108402254Y-77008600D01* X108221644Y-77083411D01* X108083411Y-77221644D01* X108008600Y-77402254D01* X107991400Y-77402254D01* X107916589Y-77221644D01* X107778356Y-77083411D01* X107597746Y-77008600D01* X107402254Y-77008600D01* X107221644Y-77083411D01* X107083411Y-77221644D01* X107008600Y-77402254D01* X105991400Y-77402254D01* X105916589Y-77221644D01* X105778356Y-77083411D01* X105597746Y-77008600D01* X105402254Y-77008600D01* X105221644Y-77083411D01* X105083411Y-77221644D01* X105008600Y-77402254D01* X103991400Y-77402254D01* X103916589Y-77221644D01* X103778356Y-77083411D01* X103597746Y-77008600D01* X103402254Y-77008600D01* X103221644Y-77083411D01* X103083411Y-77221644D01* X103008600Y-77402254D01* X102991400Y-77402254D01* X102916589Y-77221644D01* X102778356Y-77083411D01* X102597746Y-77008600D01* X102402254Y-77008600D01* X102221644Y-77083411D01* X102083411Y-77221644D01* X102008600Y-77402254D01* X100369040Y-77402254D01* X100307131Y-77340345D01* X100107850Y-77257800D01* X99892150Y-77257800D01* X99692869Y-77340345D01* X99540345Y-77492869D01* X99457800Y-77692150D01* X80943200Y-77692150D01* X80943200Y-77591951D01* X80860503Y-77392302D01* X80707698Y-77239497D01* X80508049Y-77156800D01* X80291951Y-77156800D01* X80092302Y-77239497D01* X79939497Y-77392302D01* X79856800Y-77591951D01* X79856800Y-77808049D01* X79939497Y-78007698D01* X80092302Y-78160503D01* X80216144Y-78211800D01* X78083856Y-78211800D01* X78207698Y-78160503D01* X78360503Y-78007698D01* X78443200Y-77808049D01* X78443200Y-77591951D01* X78360503Y-77392302D01* X78260351Y-77292150D01* X78657800Y-77292150D01* X78657800Y-77507850D01* X78740345Y-77707131D01* X78892869Y-77859655D01* X79092150Y-77942200D01* X79307850Y-77942200D01* X79507131Y-77859655D01* X79659655Y-77707131D01* X79742200Y-77507850D01* X79742200Y-77292150D01* X79659655Y-77092869D01* X79507131Y-76940345D01* X79307850Y-76857800D01* X79092150Y-76857800D01* X78892869Y-76940345D01* X78740345Y-77092869D01* X78657800Y-77292150D01* X78260351Y-77292150D01* X78207698Y-77239497D01* X78008049Y-77156800D01* X77791951Y-77156800D01* X77592302Y-77239497D01* X77439497Y-77392302D01* X77356800Y-77591951D01* X77356800Y-77808049D01* X77439497Y-78007698D01* X77592302Y-78160503D01* X77716144Y-78211800D01* X70799142Y-78211800D01* X70842200Y-78107850D01* X70842200Y-77892150D01* X70759655Y-77692869D01* X70607131Y-77540345D01* X70407850Y-77457800D01* X70192150Y-77457800D01* X69992869Y-77540345D01* X69840345Y-77692869D01* X69757800Y-77892150D01* X69757800Y-78107850D01* X69800858Y-78211800D01* X69000000Y-78211800D01* X68889711Y-78233738D01* X68796212Y-78296212D01* X68733738Y-78389711D01* X68711800Y-78500000D01* X68711800Y-82805318D01* X68461050Y-83056068D01* X68306800Y-83428462D01* X68306800Y-83831538D01* X68404248Y-84066800D01* X68009060Y-84066800D01* X67434518Y-84304783D01* X66994783Y-84744518D01* X66756800Y-85319060D01* X66363200Y-85319060D01* X66363200Y-77892150D01* X66857800Y-77892150D01* X66857800Y-78107850D01* X66940345Y-78307131D01* X67092869Y-78459655D01* X67292150Y-78542200D01* X67507850Y-78542200D01* X67707131Y-78459655D01* X67859655Y-78307131D01* X67942200Y-78107850D01* X67942200Y-77892150D01* X67859655Y-77692869D01* X67707131Y-77540345D01* X67507850Y-77457800D01* X67292150Y-77457800D01* X67092869Y-77540345D01* X66940345Y-77692869D01* X66857800Y-77892150D01* X66363200Y-77892150D01* X66363200Y-76402254D01* X103008600Y-76402254D01* X103008600Y-76597746D01* X103083411Y-76778356D01* X103221644Y-76916589D01* X103402254Y-76991400D01* X103597746Y-76991400D01* X103778356Y-76916589D01* X103916589Y-76778356D01* X103991400Y-76597746D01* X103991400Y-76402254D01* X104008600Y-76402254D01* X104008600Y-76597746D01* X104083411Y-76778356D01* X104221644Y-76916589D01* X104402254Y-76991400D01* X104597746Y-76991400D01* X104778356Y-76916589D01* X104916589Y-76778356D01* X104991400Y-76597746D01* X104991400Y-76402254D01* X105008600Y-76402254D01* X105008600Y-76597746D01* X105083411Y-76778356D01* X105221644Y-76916589D01* X105402254Y-76991400D01* X105597746Y-76991400D01* X105778356Y-76916589D01* X105916589Y-76778356D01* X105991400Y-76597746D01* X105991400Y-76402254D01* X106008600Y-76402254D01* X106008600Y-76597746D01* X106083411Y-76778356D01* X106221644Y-76916589D01* X106402254Y-76991400D01* X106597746Y-76991400D01* X106778356Y-76916589D01* X106916589Y-76778356D01* X106991400Y-76597746D01* X106991400Y-76402254D01* X108008600Y-76402254D01* X108008600Y-76597746D01* X108083411Y-76778356D01* X108221644Y-76916589D01* X108402254Y-76991400D01* X108597746Y-76991400D01* X108778356Y-76916589D01* X108916589Y-76778356D01* X108991400Y-76597746D01* X108991400Y-76402254D01* X108916589Y-76221644D01* X108778356Y-76083411D01* X108597746Y-76008600D01* X108402254Y-76008600D01* X108221644Y-76083411D01* X108083411Y-76221644D01* X108008600Y-76402254D01* X106991400Y-76402254D01* X106916589Y-76221644D01* X106778356Y-76083411D01* X106597746Y-76008600D01* X106402254Y-76008600D01* X106221644Y-76083411D01* X106083411Y-76221644D01* X106008600Y-76402254D01* X105991400Y-76402254D01* X105916589Y-76221644D01* X105778356Y-76083411D01* X105597746Y-76008600D01* X105402254Y-76008600D01* X105221644Y-76083411D01* X105083411Y-76221644D01* X105008600Y-76402254D01* X104991400Y-76402254D01* X104916589Y-76221644D01* X104778356Y-76083411D01* X104597746Y-76008600D01* X104402254Y-76008600D01* X104221644Y-76083411D01* X104083411Y-76221644D01* X104008600Y-76402254D01* X103991400Y-76402254D01* X103916589Y-76221644D01* X103778356Y-76083411D01* X103597746Y-76008600D01* X103402254Y-76008600D01* X103221644Y-76083411D01* X103083411Y-76221644D01* X103008600Y-76402254D01* X66363200Y-76402254D01* X66363200Y-75492150D01* X66857800Y-75492150D01* X66857800Y-75707850D01* X66940345Y-75907131D01* X67092869Y-76059655D01* X67292150Y-76142200D01* X67507850Y-76142200D01* X67707131Y-76059655D01* X67859655Y-75907131D01* X67942200Y-75707850D01* X67942200Y-75492150D01* X67904964Y-75402254D01* X105008600Y-75402254D01* X105008600Y-75597746D01* X105083411Y-75778356D01* X105221644Y-75916589D01* X105402254Y-75991400D01* X105597746Y-75991400D01* X105778356Y-75916589D01* X105916589Y-75778356D01* X105991400Y-75597746D01* X105991400Y-75402254D01* X106008600Y-75402254D01* X106008600Y-75597746D01* X106083411Y-75778356D01* X106221644Y-75916589D01* X106402254Y-75991400D01* X106597746Y-75991400D01* X106778356Y-75916589D01* X106916589Y-75778356D01* X106991400Y-75597746D01* X106991400Y-75402254D01* X106916589Y-75221644D01* X106778356Y-75083411D01* X106597746Y-75008600D01* X106402254Y-75008600D01* X106221644Y-75083411D01* X106083411Y-75221644D01* X106008600Y-75402254D01* X105991400Y-75402254D01* X105916589Y-75221644D01* X105778356Y-75083411D01* X105597746Y-75008600D01* X105402254Y-75008600D01* X105221644Y-75083411D01* X105083411Y-75221644D01* X105008600Y-75402254D01* X67904964Y-75402254D01* X67859655Y-75292869D01* X67707131Y-75140345D01* X67507850Y-75057800D01* X67292150Y-75057800D01* X67092869Y-75140345D01* X66940345Y-75292869D01* X66857800Y-75492150D01* X66363200Y-75492150D01* X66363200Y-73480000D01* X92239502Y-73480000D01* X92327840Y-73924103D01* X92579404Y-74300596D01* X92955897Y-74552160D01* X93287901Y-74618200D01* X93512099Y-74618200D01* X93844103Y-74552160D01* X94220596Y-74300596D01* X94472160Y-73924103D01* X94560498Y-73480000D01* X94779502Y-73480000D01* X94867840Y-73924103D01* X95119404Y-74300596D01* X95495897Y-74552160D01* X95827901Y-74618200D01* X96052099Y-74618200D01* X96384103Y-74552160D01* X96608453Y-74402254D01* X102008600Y-74402254D01* X102008600Y-74597746D01* X102083411Y-74778356D01* X102221644Y-74916589D01* X102402254Y-74991400D01* X102597746Y-74991400D01* X102778356Y-74916589D01* X102916589Y-74778356D01* X102991400Y-74597746D01* X102991400Y-74402254D01* X103008600Y-74402254D01* X103008600Y-74597746D01* X103083411Y-74778356D01* X103221644Y-74916589D01* X103402254Y-74991400D01* X103597746Y-74991400D01* X103778356Y-74916589D01* X103916589Y-74778356D01* X103991400Y-74597746D01* X103991400Y-74402254D01* X104008600Y-74402254D01* X104008600Y-74597746D01* X104083411Y-74778356D01* X104221644Y-74916589D01* X104402254Y-74991400D01* X104597746Y-74991400D01* X104778356Y-74916589D01* X104916589Y-74778356D01* X104991400Y-74597746D01* X104991400Y-74402254D01* X105008600Y-74402254D01* X105008600Y-74597746D01* X105083411Y-74778356D01* X105221644Y-74916589D01* X105402254Y-74991400D01* X105597746Y-74991400D01* X105778356Y-74916589D01* X105916589Y-74778356D01* X105991400Y-74597746D01* X105991400Y-74402254D01* X106008600Y-74402254D01* X106008600Y-74597746D01* X106083411Y-74778356D01* X106221644Y-74916589D01* X106402254Y-74991400D01* X106597746Y-74991400D01* X106778356Y-74916589D01* X106916589Y-74778356D01* X106991400Y-74597746D01* X106991400Y-74402254D01* X106916589Y-74221644D01* X106778356Y-74083411D01* X106597746Y-74008600D01* X106402254Y-74008600D01* X106221644Y-74083411D01* X106083411Y-74221644D01* X106008600Y-74402254D01* X105991400Y-74402254D01* X105916589Y-74221644D01* X105778356Y-74083411D01* X105597746Y-74008600D01* X105402254Y-74008600D01* X105221644Y-74083411D01* X105083411Y-74221644D01* X105008600Y-74402254D01* X104991400Y-74402254D01* X104916589Y-74221644D01* X104778356Y-74083411D01* X104597746Y-74008600D01* X104402254Y-74008600D01* X104221644Y-74083411D01* X104083411Y-74221644D01* X104008600Y-74402254D01* X103991400Y-74402254D01* X103916589Y-74221644D01* X103778356Y-74083411D01* X103597746Y-74008600D01* X103402254Y-74008600D01* X103221644Y-74083411D01* X103083411Y-74221644D01* X103008600Y-74402254D01* X102991400Y-74402254D01* X102916589Y-74221644D01* X102778356Y-74083411D01* X102597746Y-74008600D01* X102402254Y-74008600D01* X102221644Y-74083411D01* X102083411Y-74221644D01* X102008600Y-74402254D01* X96608453Y-74402254D01* X96760596Y-74300596D01* X97012160Y-73924103D01* X97100498Y-73480000D01* X97085034Y-73402254D01* X102008600Y-73402254D01* X102008600Y-73597746D01* X102083411Y-73778356D01* X102221644Y-73916589D01* X102402254Y-73991400D01* X102597746Y-73991400D01* X102778356Y-73916589D01* X102916589Y-73778356D01* X102991400Y-73597746D01* X102991400Y-73402254D01* X103008600Y-73402254D01* X103008600Y-73597746D01* X103083411Y-73778356D01* X103221644Y-73916589D01* X103402254Y-73991400D01* X103597746Y-73991400D01* X103778356Y-73916589D01* X103916589Y-73778356D01* X103991400Y-73597746D01* X103991400Y-73402254D01* X104008600Y-73402254D01* X104008600Y-73597746D01* X104083411Y-73778356D01* X104221644Y-73916589D01* X104402254Y-73991400D01* X104597746Y-73991400D01* X104778356Y-73916589D01* X104916589Y-73778356D01* X104991400Y-73597746D01* X104991400Y-73402254D01* X105008600Y-73402254D01* X105008600Y-73597746D01* X105083411Y-73778356D01* X105221644Y-73916589D01* X105402254Y-73991400D01* X105597746Y-73991400D01* X105778356Y-73916589D01* X105916589Y-73778356D01* X105991400Y-73597746D01* X105991400Y-73402254D01* X108008600Y-73402254D01* X108008600Y-73597746D01* X108083411Y-73778356D01* X108221644Y-73916589D01* X108402254Y-73991400D01* X108597746Y-73991400D01* X108778356Y-73916589D01* X108916589Y-73778356D01* X108991400Y-73597746D01* X108991400Y-73402254D01* X109008600Y-73402254D01* X109008600Y-73597746D01* X109083411Y-73778356D01* X109221644Y-73916589D01* X109402254Y-73991400D01* X109597746Y-73991400D01* X109778356Y-73916589D01* X109916589Y-73778356D01* X109991400Y-73597746D01* X109991400Y-73402254D01* X120008600Y-73402254D01* X120008600Y-73597746D01* X120083411Y-73778356D01* X120221644Y-73916589D01* X120402254Y-73991400D01* X120597746Y-73991400D01* X120778356Y-73916589D01* X120916589Y-73778356D01* X120991400Y-73597746D01* X120991400Y-73402254D01* X121008600Y-73402254D01* X121008600Y-73597746D01* X121083411Y-73778356D01* X121221644Y-73916589D01* X121402254Y-73991400D01* X121597746Y-73991400D01* X121778356Y-73916589D01* X121916589Y-73778356D01* X121991400Y-73597746D01* X121991400Y-73402254D01* X123008600Y-73402254D01* X123008600Y-73597746D01* X123083411Y-73778356D01* X123221644Y-73916589D01* X123402254Y-73991400D01* X123597746Y-73991400D01* X123778356Y-73916589D01* X123916589Y-73778356D01* X123991400Y-73597746D01* X123991400Y-73402254D01* X125008600Y-73402254D01* X125008600Y-73597746D01* X125083411Y-73778356D01* X125221644Y-73916589D01* X125402254Y-73991400D01* X125597746Y-73991400D01* X125778356Y-73916589D01* X125916589Y-73778356D01* X125991400Y-73597746D01* X125991400Y-73402254D01* X125916589Y-73221644D01* X125778356Y-73083411D01* X125597746Y-73008600D01* X125402254Y-73008600D01* X125221644Y-73083411D01* X125083411Y-73221644D01* X125008600Y-73402254D01* X123991400Y-73402254D01* X123916589Y-73221644D01* X123778356Y-73083411D01* X123597746Y-73008600D01* X123402254Y-73008600D01* X123221644Y-73083411D01* X123083411Y-73221644D01* X123008600Y-73402254D01* X121991400Y-73402254D01* X121916589Y-73221644D01* X121778356Y-73083411D01* X121597746Y-73008600D01* X121402254Y-73008600D01* X121221644Y-73083411D01* X121083411Y-73221644D01* X121008600Y-73402254D01* X120991400Y-73402254D01* X120916589Y-73221644D01* X120778356Y-73083411D01* X120597746Y-73008600D01* X120402254Y-73008600D01* X120221644Y-73083411D01* X120083411Y-73221644D01* X120008600Y-73402254D01* X109991400Y-73402254D01* X109916589Y-73221644D01* X109778356Y-73083411D01* X109597746Y-73008600D01* X109402254Y-73008600D01* X109221644Y-73083411D01* X109083411Y-73221644D01* X109008600Y-73402254D01* X108991400Y-73402254D01* X108916589Y-73221644D01* X108778356Y-73083411D01* X108597746Y-73008600D01* X108402254Y-73008600D01* X108221644Y-73083411D01* X108083411Y-73221644D01* X108008600Y-73402254D01* X105991400Y-73402254D01* X105916589Y-73221644D01* X105778356Y-73083411D01* X105597746Y-73008600D01* X105402254Y-73008600D01* X105221644Y-73083411D01* X105083411Y-73221644D01* X105008600Y-73402254D01* X104991400Y-73402254D01* X104916589Y-73221644D01* X104778356Y-73083411D01* X104597746Y-73008600D01* X104402254Y-73008600D01* X104221644Y-73083411D01* X104083411Y-73221644D01* X104008600Y-73402254D01* X103991400Y-73402254D01* X103916589Y-73221644D01* X103778356Y-73083411D01* X103597746Y-73008600D01* X103402254Y-73008600D01* X103221644Y-73083411D01* X103083411Y-73221644D01* X103008600Y-73402254D01* X102991400Y-73402254D01* X102916589Y-73221644D01* X102778356Y-73083411D01* X102597746Y-73008600D01* X102402254Y-73008600D01* X102221644Y-73083411D01* X102083411Y-73221644D01* X102008600Y-73402254D01* X97085034Y-73402254D01* X97012160Y-73035897D01* X96760596Y-72659404D01* X96384103Y-72407840D01* X96356021Y-72402254D01* X102008600Y-72402254D01* X102008600Y-72597746D01* X102083411Y-72778356D01* X102221644Y-72916589D01* X102402254Y-72991400D01* X102597746Y-72991400D01* X102778356Y-72916589D01* X102916589Y-72778356D01* X102991400Y-72597746D01* X102991400Y-72402254D01* X103008600Y-72402254D01* X103008600Y-72597746D01* X103083411Y-72778356D01* X103221644Y-72916589D01* X103402254Y-72991400D01* X103597746Y-72991400D01* X103778356Y-72916589D01* X103916589Y-72778356D01* X103991400Y-72597746D01* X103991400Y-72402254D01* X104008600Y-72402254D01* X104008600Y-72597746D01* X104083411Y-72778356D01* X104221644Y-72916589D01* X104402254Y-72991400D01* X104597746Y-72991400D01* X104778356Y-72916589D01* X104916589Y-72778356D01* X104991400Y-72597746D01* X104991400Y-72402254D01* X105008600Y-72402254D01* X105008600Y-72597746D01* X105083411Y-72778356D01* X105221644Y-72916589D01* X105402254Y-72991400D01* X105597746Y-72991400D01* X105778356Y-72916589D01* X105916589Y-72778356D01* X105991400Y-72597746D01* X105991400Y-72402254D01* X106008600Y-72402254D01* X106008600Y-72597746D01* X106083411Y-72778356D01* X106221644Y-72916589D01* X106402254Y-72991400D01* X106597746Y-72991400D01* X106778356Y-72916589D01* X106916589Y-72778356D01* X106991400Y-72597746D01* X106991400Y-72402254D01* X109008600Y-72402254D01* X109008600Y-72597746D01* X109083411Y-72778356D01* X109221644Y-72916589D01* X109402254Y-72991400D01* X109597746Y-72991400D01* X109778356Y-72916589D01* X109916589Y-72778356D01* X109991400Y-72597746D01* X109991400Y-72402254D01* X111008600Y-72402254D01* X111008600Y-72597746D01* X111083411Y-72778356D01* X111221644Y-72916589D01* X111402254Y-72991400D01* X111597746Y-72991400D01* X111778356Y-72916589D01* X111916589Y-72778356D01* X111991400Y-72597746D01* X111991400Y-72402254D01* X115008600Y-72402254D01* X115008600Y-72597746D01* X115083411Y-72778356D01* X115221644Y-72916589D01* X115402254Y-72991400D01* X115597746Y-72991400D01* X115778356Y-72916589D01* X115916589Y-72778356D01* X115991400Y-72597746D01* X115991400Y-72402254D01* X117008600Y-72402254D01* X117008600Y-72597746D01* X117083411Y-72778356D01* X117221644Y-72916589D01* X117402254Y-72991400D01* X117597746Y-72991400D01* X117778356Y-72916589D01* X117916589Y-72778356D01* X117991400Y-72597746D01* X117991400Y-72402254D01* X122008600Y-72402254D01* X122008600Y-72597746D01* X122083411Y-72778356D01* X122221644Y-72916589D01* X122402254Y-72991400D01* X122597746Y-72991400D01* X122778356Y-72916589D01* X122916589Y-72778356D01* X122991400Y-72597746D01* X122991400Y-72402254D01* X123008600Y-72402254D01* X123008600Y-72597746D01* X123083411Y-72778356D01* X123221644Y-72916589D01* X123402254Y-72991400D01* X123597746Y-72991400D01* X123778356Y-72916589D01* X123916589Y-72778356D01* X123991400Y-72597746D01* X123991400Y-72402254D01* X124008600Y-72402254D01* X124008600Y-72597746D01* X124083411Y-72778356D01* X124221644Y-72916589D01* X124402254Y-72991400D01* X124597746Y-72991400D01* X124778356Y-72916589D01* X124792691Y-72902254D01* X127508600Y-72902254D01* X127508600Y-73097746D01* X127583411Y-73278356D01* X127721644Y-73416589D01* X127902254Y-73491400D01* X128097746Y-73491400D01* X128278356Y-73416589D01* X128292691Y-73402254D01* X133008600Y-73402254D01* X133008600Y-73597746D01* X133083411Y-73778356D01* X133221644Y-73916589D01* X133402254Y-73991400D01* X133597746Y-73991400D01* X133778356Y-73916589D01* X133916589Y-73778356D01* X133991400Y-73597746D01* X133991400Y-73402254D01* X133916589Y-73221644D01* X133778356Y-73083411D01* X133597746Y-73008600D01* X133402254Y-73008600D01* X133221644Y-73083411D01* X133083411Y-73221644D01* X133008600Y-73402254D01* X128292691Y-73402254D01* X128416589Y-73278356D01* X128491400Y-73097746D01* X128491400Y-72902254D01* X128475186Y-72863108D01* X137611800Y-72863108D01* X137611800Y-73136892D01* X137716572Y-73389834D01* X137910166Y-73583428D01* X138163108Y-73688200D01* X138436892Y-73688200D01* X138689834Y-73583428D01* X138793262Y-73480000D01* X179139502Y-73480000D01* X179227840Y-73924103D01* X179479404Y-74300596D01* X179855897Y-74552160D01* X180187901Y-74618200D01* X180412099Y-74618200D01* X180744103Y-74552160D01* X181120596Y-74300596D01* X181372160Y-73924103D01* X181460498Y-73480000D01* X181679502Y-73480000D01* X181767840Y-73924103D01* X182019404Y-74300596D01* X182395897Y-74552160D01* X182727901Y-74618200D01* X182952099Y-74618200D01* X183284103Y-74552160D01* X183660596Y-74300596D01* X183912160Y-73924103D01* X184000498Y-73480000D01* X183912160Y-73035897D01* X183660596Y-72659404D01* X183284103Y-72407840D01* X182952099Y-72341800D01* X182727901Y-72341800D01* X182395897Y-72407840D01* X182019404Y-72659404D01* X181767840Y-73035897D01* X181679502Y-73480000D01* X181460498Y-73480000D01* X181372160Y-73035897D01* X181120596Y-72659404D01* X180744103Y-72407840D01* X180412099Y-72341800D01* X180187901Y-72341800D01* X179855897Y-72407840D01* X179479404Y-72659404D01* X179227840Y-73035897D01* X179139502Y-73480000D01* X138793262Y-73480000D01* X138883428Y-73389834D01* X138988200Y-73136892D01* X138988200Y-72863108D01* X138883428Y-72610166D01* X138689834Y-72416572D01* X138436892Y-72311800D01* X138163108Y-72311800D01* X137910166Y-72416572D01* X137716572Y-72610166D01* X137611800Y-72863108D01* X128475186Y-72863108D01* X128416589Y-72721644D01* X128278356Y-72583411D01* X128097746Y-72508600D01* X127902254Y-72508600D01* X127721644Y-72583411D01* X127583411Y-72721644D01* X127508600Y-72902254D01* X124792691Y-72902254D01* X124916589Y-72778356D01* X124991400Y-72597746D01* X124991400Y-72402254D01* X124916589Y-72221644D01* X124778356Y-72083411D01* X124597746Y-72008600D01* X124402254Y-72008600D01* X124221644Y-72083411D01* X124083411Y-72221644D01* X124008600Y-72402254D01* X123991400Y-72402254D01* X123916589Y-72221644D01* X123778356Y-72083411D01* X123597746Y-72008600D01* X123402254Y-72008600D01* X123221644Y-72083411D01* X123083411Y-72221644D01* X123008600Y-72402254D01* X122991400Y-72402254D01* X122916589Y-72221644D01* X122778356Y-72083411D01* X122597746Y-72008600D01* X122402254Y-72008600D01* X122221644Y-72083411D01* X122083411Y-72221644D01* X122008600Y-72402254D01* X117991400Y-72402254D01* X117916589Y-72221644D01* X117778356Y-72083411D01* X117597746Y-72008600D01* X117402254Y-72008600D01* X117221644Y-72083411D01* X117083411Y-72221644D01* X117008600Y-72402254D01* X115991400Y-72402254D01* X115916589Y-72221644D01* X115778356Y-72083411D01* X115597746Y-72008600D01* X115402254Y-72008600D01* X115221644Y-72083411D01* X115083411Y-72221644D01* X115008600Y-72402254D01* X111991400Y-72402254D01* X111916589Y-72221644D01* X111778356Y-72083411D01* X111597746Y-72008600D01* X111402254Y-72008600D01* X111221644Y-72083411D01* X111083411Y-72221644D01* X111008600Y-72402254D01* X109991400Y-72402254D01* X109916589Y-72221644D01* X109778356Y-72083411D01* X109597746Y-72008600D01* X109402254Y-72008600D01* X109221644Y-72083411D01* X109083411Y-72221644D01* X109008600Y-72402254D01* X106991400Y-72402254D01* X106916589Y-72221644D01* X106778356Y-72083411D01* X106597746Y-72008600D01* X106402254Y-72008600D01* X106221644Y-72083411D01* X106083411Y-72221644D01* X106008600Y-72402254D01* X105991400Y-72402254D01* X105916589Y-72221644D01* X105778356Y-72083411D01* X105597746Y-72008600D01* X105402254Y-72008600D01* X105221644Y-72083411D01* X105083411Y-72221644D01* X105008600Y-72402254D01* X104991400Y-72402254D01* X104916589Y-72221644D01* X104778356Y-72083411D01* X104597746Y-72008600D01* X104402254Y-72008600D01* X104221644Y-72083411D01* X104083411Y-72221644D01* X104008600Y-72402254D01* X103991400Y-72402254D01* X103916589Y-72221644D01* X103778356Y-72083411D01* X103597746Y-72008600D01* X103402254Y-72008600D01* X103221644Y-72083411D01* X103083411Y-72221644D01* X103008600Y-72402254D01* X102991400Y-72402254D01* X102916589Y-72221644D01* X102778356Y-72083411D01* X102597746Y-72008600D01* X102402254Y-72008600D01* X102221644Y-72083411D01* X102083411Y-72221644D01* X102008600Y-72402254D01* X96356021Y-72402254D01* X96052099Y-72341800D01* X95827901Y-72341800D01* X95495897Y-72407840D01* X95119404Y-72659404D01* X94867840Y-73035897D01* X94779502Y-73480000D01* X94560498Y-73480000D01* X94472160Y-73035897D01* X94220596Y-72659404D01* X93844103Y-72407840D01* X93512099Y-72341800D01* X93287901Y-72341800D01* X92955897Y-72407840D01* X92579404Y-72659404D01* X92327840Y-73035897D01* X92239502Y-73480000D01* X66363200Y-73480000D01* X66363200Y-69544849D01* X66711800Y-69544849D01* X66711800Y-70455151D01* X67060158Y-71296161D01* X67703839Y-71939842D01* X68544849Y-72288200D01* X69455151Y-72288200D01* X70296161Y-71939842D01* X70939842Y-71296161D01* X71288200Y-70455151D01* X71288200Y-69544849D01* X70939842Y-68703839D01* X70809601Y-68573598D01* X72761800Y-68573598D01* X72761800Y-69026402D01* X72935080Y-69444739D01* X73255261Y-69764920D01* X73673598Y-69938200D01* X74126402Y-69938200D01* X74544739Y-69764920D01* X74864920Y-69444739D01* X75038200Y-69026402D01* X75038200Y-68800000D01* X75279502Y-68800000D01* X75367840Y-69244103D01* X75619404Y-69620596D01* X75995897Y-69872160D01* X76327901Y-69938200D01* X76552099Y-69938200D01* X76884103Y-69872160D01* X77260596Y-69620596D01* X77512160Y-69244103D01* X77600498Y-68800000D01* X77819502Y-68800000D01* X77907840Y-69244103D01* X78159404Y-69620596D01* X78535897Y-69872160D01* X78867901Y-69938200D01* X79092099Y-69938200D01* X79424103Y-69872160D01* X79800596Y-69620596D01* X80052160Y-69244103D01* X80140498Y-68800000D01* X80359502Y-68800000D01* X80447840Y-69244103D01* X80699404Y-69620596D01* X81075897Y-69872160D01* X81407901Y-69938200D01* X81632099Y-69938200D01* X81964103Y-69872160D01* X82340596Y-69620596D01* X82592160Y-69244103D01* X82680498Y-68800000D01* X82899502Y-68800000D01* X82987840Y-69244103D01* X83239404Y-69620596D01* X83615897Y-69872160D01* X83947901Y-69938200D01* X84172099Y-69938200D01* X84504103Y-69872160D01* X84880596Y-69620596D01* X84931208Y-69544849D01* X86711800Y-69544849D01* X86711800Y-70455151D01* X87060158Y-71296161D01* X87703839Y-71939842D01* X88544849Y-72288200D01* X89455151Y-72288200D01* X90296161Y-71939842D01* X90939842Y-71296161D01* X91087368Y-70940000D01* X92239502Y-70940000D01* X92327840Y-71384103D01* X92579404Y-71760596D01* X92955897Y-72012160D01* X93287901Y-72078200D01* X93512099Y-72078200D01* X93844103Y-72012160D01* X94220596Y-71760596D01* X94472160Y-71384103D01* X94560498Y-70940000D01* X94779502Y-70940000D01* X94867840Y-71384103D01* X95119404Y-71760596D01* X95495897Y-72012160D01* X95827901Y-72078200D01* X96052099Y-72078200D01* X96384103Y-72012160D01* X96760596Y-71760596D01* X97000031Y-71402254D01* X103008600Y-71402254D01* X103008600Y-71597746D01* X103083411Y-71778356D01* X103221644Y-71916589D01* X103402254Y-71991400D01* X103597746Y-71991400D01* X103778356Y-71916589D01* X103916589Y-71778356D01* X103991400Y-71597746D01* X103991400Y-71402254D01* X104008600Y-71402254D01* X104008600Y-71597746D01* X104083411Y-71778356D01* X104221644Y-71916589D01* X104402254Y-71991400D01* X104597746Y-71991400D01* X104778356Y-71916589D01* X104916589Y-71778356D01* X104991400Y-71597746D01* X104991400Y-71402254D01* X107008600Y-71402254D01* X107008600Y-71597746D01* X107083411Y-71778356D01* X107221644Y-71916589D01* X107402254Y-71991400D01* X107597746Y-71991400D01* X107778356Y-71916589D01* X107916589Y-71778356D01* X107991400Y-71597746D01* X107991400Y-71402254D01* X119008600Y-71402254D01* X119008600Y-71597746D01* X119083411Y-71778356D01* X119221644Y-71916589D01* X119402254Y-71991400D01* X119597746Y-71991400D01* X119778356Y-71916589D01* X119916589Y-71778356D01* X119991400Y-71597746D01* X119991400Y-71402254D01* X121008600Y-71402254D01* X121008600Y-71597746D01* X121083411Y-71778356D01* X121221644Y-71916589D01* X121402254Y-71991400D01* X121597746Y-71991400D01* X121778356Y-71916589D01* X121916589Y-71778356D01* X121991400Y-71597746D01* X121991400Y-71402254D01* X122008600Y-71402254D01* X122008600Y-71597746D01* X122083411Y-71778356D01* X122221644Y-71916589D01* X122402254Y-71991400D01* X122597746Y-71991400D01* X122778356Y-71916589D01* X122916589Y-71778356D01* X122991400Y-71597746D01* X122991400Y-71402254D01* X123008600Y-71402254D01* X123008600Y-71597746D01* X123083411Y-71778356D01* X123221644Y-71916589D01* X123402254Y-71991400D01* X123597746Y-71991400D01* X123778356Y-71916589D01* X123916589Y-71778356D01* X123991400Y-71597746D01* X123991400Y-71402254D01* X124008600Y-71402254D01* X124008600Y-71597746D01* X124083411Y-71778356D01* X124221644Y-71916589D01* X124402254Y-71991400D01* X124597746Y-71991400D01* X124778356Y-71916589D01* X124916589Y-71778356D01* X124991400Y-71597746D01* X124991400Y-71402254D01* X125008600Y-71402254D01* X125008600Y-71597746D01* X125083411Y-71778356D01* X125221644Y-71916589D01* X125402254Y-71991400D01* X125597746Y-71991400D01* X125778356Y-71916589D01* X125916589Y-71778356D01* X125991400Y-71597746D01* X125991400Y-71402254D01* X125916589Y-71221644D01* X125778356Y-71083411D01* X125597746Y-71008600D01* X125402254Y-71008600D01* X125221644Y-71083411D01* X125083411Y-71221644D01* X125008600Y-71402254D01* X124991400Y-71402254D01* X124916589Y-71221644D01* X124778356Y-71083411D01* X124597746Y-71008600D01* X124402254Y-71008600D01* X124221644Y-71083411D01* X124083411Y-71221644D01* X124008600Y-71402254D01* X123991400Y-71402254D01* X123916589Y-71221644D01* X123778356Y-71083411D01* X123597746Y-71008600D01* X123402254Y-71008600D01* X123221644Y-71083411D01* X123083411Y-71221644D01* X123008600Y-71402254D01* X122991400Y-71402254D01* X122916589Y-71221644D01* X122778356Y-71083411D01* X122597746Y-71008600D01* X122402254Y-71008600D01* X122221644Y-71083411D01* X122083411Y-71221644D01* X122008600Y-71402254D01* X121991400Y-71402254D01* X121916589Y-71221644D01* X121778356Y-71083411D01* X121597746Y-71008600D01* X121402254Y-71008600D01* X121221644Y-71083411D01* X121083411Y-71221644D01* X121008600Y-71402254D01* X119991400Y-71402254D01* X119916589Y-71221644D01* X119778356Y-71083411D01* X119597746Y-71008600D01* X119402254Y-71008600D01* X119221644Y-71083411D01* X119083411Y-71221644D01* X119008600Y-71402254D01* X107991400Y-71402254D01* X107916589Y-71221644D01* X107778356Y-71083411D01* X107597746Y-71008600D01* X107402254Y-71008600D01* X107221644Y-71083411D01* X107083411Y-71221644D01* X107008600Y-71402254D01* X104991400Y-71402254D01* X104916589Y-71221644D01* X104778356Y-71083411D01* X104597746Y-71008600D01* X104402254Y-71008600D01* X104221644Y-71083411D01* X104083411Y-71221644D01* X104008600Y-71402254D01* X103991400Y-71402254D01* X103916589Y-71221644D01* X103778356Y-71083411D01* X103597746Y-71008600D01* X103402254Y-71008600D01* X103221644Y-71083411D01* X103083411Y-71221644D01* X103008600Y-71402254D01* X97000031Y-71402254D01* X97012160Y-71384103D01* X97100498Y-70940000D01* X97012160Y-70495897D01* X96949590Y-70402254D01* X102008600Y-70402254D01* X102008600Y-70597746D01* X102083411Y-70778356D01* X102221644Y-70916589D01* X102402254Y-70991400D01* X102597746Y-70991400D01* X102778356Y-70916589D01* X102916589Y-70778356D01* X102991400Y-70597746D01* X102991400Y-70402254D01* X106008600Y-70402254D01* X106008600Y-70597746D01* X106083411Y-70778356D01* X106221644Y-70916589D01* X106402254Y-70991400D01* X106597746Y-70991400D01* X106778356Y-70916589D01* X106916589Y-70778356D01* X106991400Y-70597746D01* X106991400Y-70402254D01* X107008600Y-70402254D01* X107008600Y-70597746D01* X107083411Y-70778356D01* X107221644Y-70916589D01* X107402254Y-70991400D01* X107597746Y-70991400D01* X107778356Y-70916589D01* X107916589Y-70778356D01* X107991400Y-70597746D01* X107991400Y-70402254D01* X108008600Y-70402254D01* X108008600Y-70597746D01* X108083411Y-70778356D01* X108221644Y-70916589D01* X108402254Y-70991400D01* X108597746Y-70991400D01* X108778356Y-70916589D01* X108916589Y-70778356D01* X108991400Y-70597746D01* X108991400Y-70402254D01* X111008600Y-70402254D01* X111008600Y-70597746D01* X111083411Y-70778356D01* X111221644Y-70916589D01* X111402254Y-70991400D01* X111597746Y-70991400D01* X111778356Y-70916589D01* X111916589Y-70778356D01* X111991400Y-70597746D01* X111991400Y-70402254D01* X113008600Y-70402254D01* X113008600Y-70597746D01* X113083411Y-70778356D01* X113221644Y-70916589D01* X113402254Y-70991400D01* X113597746Y-70991400D01* X113778356Y-70916589D01* X113916589Y-70778356D01* X113991400Y-70597746D01* X113991400Y-70402254D01* X115008600Y-70402254D01* X115008600Y-70597746D01* X115083411Y-70778356D01* X115221644Y-70916589D01* X115402254Y-70991400D01* X115597746Y-70991400D01* X115778356Y-70916589D01* X115916589Y-70778356D01* X115991400Y-70597746D01* X115991400Y-70402254D01* X117008600Y-70402254D01* X117008600Y-70597746D01* X117083411Y-70778356D01* X117221644Y-70916589D01* X117402254Y-70991400D01* X117597746Y-70991400D01* X117778356Y-70916589D01* X117916589Y-70778356D01* X117991400Y-70597746D01* X117991400Y-70402254D01* X121008600Y-70402254D01* X121008600Y-70597746D01* X121083411Y-70778356D01* X121221644Y-70916589D01* X121402254Y-70991400D01* X121597746Y-70991400D01* X121778356Y-70916589D01* X121916589Y-70778356D01* X121991400Y-70597746D01* X121991400Y-70402254D01* X122008600Y-70402254D01* X122008600Y-70597746D01* X122083411Y-70778356D01* X122221644Y-70916589D01* X122402254Y-70991400D01* X122597746Y-70991400D01* X122778356Y-70916589D01* X122916589Y-70778356D01* X122991400Y-70597746D01* X122991400Y-70402254D01* X124008600Y-70402254D01* X124008600Y-70597746D01* X124083411Y-70778356D01* X124221644Y-70916589D01* X124402254Y-70991400D01* X124597746Y-70991400D01* X124778356Y-70916589D01* X124916589Y-70778356D01* X124991400Y-70597746D01* X124991400Y-70402254D01* X125008600Y-70402254D01* X125008600Y-70597746D01* X125083411Y-70778356D01* X125221644Y-70916589D01* X125402254Y-70991400D01* X125597746Y-70991400D01* X125778356Y-70916589D01* X125836265Y-70858680D01* X134786800Y-70858680D01* X134786800Y-71341320D01* X134971499Y-71787223D01* X135312777Y-72128501D01* X135758680Y-72313200D01* X136241320Y-72313200D01* X136687223Y-72128501D01* X136748574Y-72067150D01* X165382800Y-72067150D01* X165382800Y-72282850D01* X165465345Y-72482131D01* X165617869Y-72634655D01* X165817150Y-72717200D01* X166032850Y-72717200D01* X166232131Y-72634655D01* X166384655Y-72482131D01* X166467200Y-72282850D01* X166467200Y-72067150D01* X166384655Y-71867869D01* X166232131Y-71715345D01* X166032850Y-71632800D01* X165817150Y-71632800D01* X165617869Y-71715345D01* X165465345Y-71867869D01* X165382800Y-72067150D01* X136748574Y-72067150D01* X137028501Y-71787223D01* X137192227Y-71391951D01* X147956800Y-71391951D01* X147956800Y-71608049D01* X148039497Y-71807698D01* X148192302Y-71960503D01* X148391951Y-72043200D01* X148608049Y-72043200D01* X148807698Y-71960503D01* X148960503Y-71807698D01* X149043200Y-71608049D01* X149043200Y-71391951D01* X149001779Y-71291951D01* X150556800Y-71291951D01* X150556800Y-71508049D01* X150639497Y-71707698D01* X150792302Y-71860503D01* X150991951Y-71943200D01* X151208049Y-71943200D01* X151407698Y-71860503D01* X151560503Y-71707698D01* X151643200Y-71508049D01* X151643200Y-71291951D01* X151560503Y-71092302D01* X151407698Y-70939497D01* X151208049Y-70856800D01* X150991951Y-70856800D01* X150792302Y-70939497D01* X150639497Y-71092302D01* X150556800Y-71291951D01* X149001779Y-71291951D01* X148960503Y-71192302D01* X148807698Y-71039497D01* X148608049Y-70956800D01* X148391951Y-70956800D01* X148192302Y-71039497D01* X148039497Y-71192302D01* X147956800Y-71391951D01* X137192227Y-71391951D01* X137213200Y-71341320D01* X137213200Y-70858680D01* X137028501Y-70412777D01* X136687223Y-70071499D01* X136241320Y-69886800D01* X135758680Y-69886800D01* X135312777Y-70071499D01* X134971499Y-70412777D01* X134786800Y-70858680D01* X125836265Y-70858680D01* X125916589Y-70778356D01* X125991400Y-70597746D01* X125991400Y-70402254D01* X125916589Y-70221644D01* X125778356Y-70083411D01* X125597746Y-70008600D01* X125402254Y-70008600D01* X125221644Y-70083411D01* X125083411Y-70221644D01* X125008600Y-70402254D01* X124991400Y-70402254D01* X124916589Y-70221644D01* X124778356Y-70083411D01* X124597746Y-70008600D01* X124402254Y-70008600D01* X124221644Y-70083411D01* X124083411Y-70221644D01* X124008600Y-70402254D01* X122991400Y-70402254D01* X122916589Y-70221644D01* X122778356Y-70083411D01* X122597746Y-70008600D01* X122402254Y-70008600D01* X122221644Y-70083411D01* X122083411Y-70221644D01* X122008600Y-70402254D01* X121991400Y-70402254D01* X121916589Y-70221644D01* X121778356Y-70083411D01* X121597746Y-70008600D01* X121402254Y-70008600D01* X121221644Y-70083411D01* X121083411Y-70221644D01* X121008600Y-70402254D01* X117991400Y-70402254D01* X117916589Y-70221644D01* X117778356Y-70083411D01* X117597746Y-70008600D01* X117402254Y-70008600D01* X117221644Y-70083411D01* X117083411Y-70221644D01* X117008600Y-70402254D01* X115991400Y-70402254D01* X115916589Y-70221644D01* X115778356Y-70083411D01* X115597746Y-70008600D01* X115402254Y-70008600D01* X115221644Y-70083411D01* X115083411Y-70221644D01* X115008600Y-70402254D01* X113991400Y-70402254D01* X113916589Y-70221644D01* X113778356Y-70083411D01* X113597746Y-70008600D01* X113402254Y-70008600D01* X113221644Y-70083411D01* X113083411Y-70221644D01* X113008600Y-70402254D01* X111991400Y-70402254D01* X111916589Y-70221644D01* X111778356Y-70083411D01* X111597746Y-70008600D01* X111402254Y-70008600D01* X111221644Y-70083411D01* X111083411Y-70221644D01* X111008600Y-70402254D01* X108991400Y-70402254D01* X108916589Y-70221644D01* X108778356Y-70083411D01* X108597746Y-70008600D01* X108402254Y-70008600D01* X108221644Y-70083411D01* X108083411Y-70221644D01* X108008600Y-70402254D01* X107991400Y-70402254D01* X107916589Y-70221644D01* X107778356Y-70083411D01* X107597746Y-70008600D01* X107402254Y-70008600D01* X107221644Y-70083411D01* X107083411Y-70221644D01* X107008600Y-70402254D01* X106991400Y-70402254D01* X106916589Y-70221644D01* X106778356Y-70083411D01* X106597746Y-70008600D01* X106402254Y-70008600D01* X106221644Y-70083411D01* X106083411Y-70221644D01* X106008600Y-70402254D01* X102991400Y-70402254D01* X102916589Y-70221644D01* X102778356Y-70083411D01* X102597746Y-70008600D01* X102402254Y-70008600D01* X102221644Y-70083411D01* X102083411Y-70221644D01* X102008600Y-70402254D01* X96949590Y-70402254D01* X96760596Y-70119404D01* X96384103Y-69867840D01* X96052099Y-69801800D01* X95827901Y-69801800D01* X95495897Y-69867840D01* X95119404Y-70119404D01* X94867840Y-70495897D01* X94779502Y-70940000D01* X94560498Y-70940000D01* X94472160Y-70495897D01* X94220596Y-70119404D01* X93844103Y-69867840D01* X93512099Y-69801800D01* X93287901Y-69801800D01* X92955897Y-69867840D01* X92579404Y-70119404D01* X92327840Y-70495897D01* X92239502Y-70940000D01* X91087368Y-70940000D01* X91288200Y-70455151D01* X91288200Y-69544849D01* X90939842Y-68703839D01* X90296161Y-68060158D01* X89455151Y-67711800D01* X88544849Y-67711800D01* X87703839Y-68060158D01* X87060158Y-68703839D01* X86711800Y-69544849D01* X84931208Y-69544849D01* X85132160Y-69244103D01* X85220498Y-68800000D01* X85132160Y-68355897D01* X84880596Y-67979404D01* X84504103Y-67727840D01* X84172099Y-67661800D01* X83947901Y-67661800D01* X83615897Y-67727840D01* X83239404Y-67979404D01* X82987840Y-68355897D01* X82899502Y-68800000D01* X82680498Y-68800000D01* X82592160Y-68355897D01* X82340596Y-67979404D01* X81964103Y-67727840D01* X81632099Y-67661800D01* X81407901Y-67661800D01* X81075897Y-67727840D01* X80699404Y-67979404D01* X80447840Y-68355897D01* X80359502Y-68800000D01* X80140498Y-68800000D01* X80052160Y-68355897D01* X79800596Y-67979404D01* X79424103Y-67727840D01* X79092099Y-67661800D01* X78867901Y-67661800D01* X78535897Y-67727840D01* X78159404Y-67979404D01* X77907840Y-68355897D01* X77819502Y-68800000D01* X77600498Y-68800000D01* X77512160Y-68355897D01* X77260596Y-67979404D01* X76884103Y-67727840D01* X76552099Y-67661800D01* X76327901Y-67661800D01* X75995897Y-67727840D01* X75619404Y-67979404D01* X75367840Y-68355897D01* X75279502Y-68800000D01* X75038200Y-68800000D01* X75038200Y-68573598D01* X74864920Y-68155261D01* X74544739Y-67835080D01* X74126402Y-67661800D01* X73673598Y-67661800D01* X73255261Y-67835080D01* X72935080Y-68155261D01* X72761800Y-68573598D01* X70809601Y-68573598D01* X70296161Y-68060158D01* X69455151Y-67711800D01* X68544849Y-67711800D01* X67703839Y-68060158D01* X67060158Y-68703839D01* X66711800Y-69544849D01* X66363200Y-69544849D01* X66363200Y-67363200D01* X92928796Y-67363200D01* X92755261Y-67435080D01* X92435080Y-67755261D01* X92261800Y-68173598D01* X92261800Y-68626402D01* X92435080Y-69044739D01* X92755261Y-69364920D01* X93173598Y-69538200D01* X93626402Y-69538200D01* X94044739Y-69364920D01* X94364920Y-69044739D01* X94538200Y-68626402D01* X94538200Y-68400000D01* X94779502Y-68400000D01* X94867840Y-68844103D01* X95119404Y-69220596D01* X95495897Y-69472160D01* X95827901Y-69538200D01* X96052099Y-69538200D01* X96384103Y-69472160D01* X96488724Y-69402254D01* X104008600Y-69402254D01* X104008600Y-69597746D01* X104083411Y-69778356D01* X104221644Y-69916589D01* X104402254Y-69991400D01* X104597746Y-69991400D01* X104778356Y-69916589D01* X104916589Y-69778356D01* X104991400Y-69597746D01* X104991400Y-69402254D01* X106008600Y-69402254D01* X106008600Y-69597746D01* X106083411Y-69778356D01* X106221644Y-69916589D01* X106402254Y-69991400D01* X106597746Y-69991400D01* X106778356Y-69916589D01* X106916589Y-69778356D01* X106991400Y-69597746D01* X106991400Y-69402254D01* X108008600Y-69402254D01* X108008600Y-69597746D01* X108083411Y-69778356D01* X108221644Y-69916589D01* X108402254Y-69991400D01* X108597746Y-69991400D01* X108778356Y-69916589D01* X108916589Y-69778356D01* X108991400Y-69597746D01* X108991400Y-69402254D01* X111008600Y-69402254D01* X111008600Y-69597746D01* X111083411Y-69778356D01* X111221644Y-69916589D01* X111402254Y-69991400D01* X111597746Y-69991400D01* X111778356Y-69916589D01* X111916589Y-69778356D01* X111991400Y-69597746D01* X111991400Y-69402254D01* X113008600Y-69402254D01* X113008600Y-69597746D01* X113083411Y-69778356D01* X113221644Y-69916589D01* X113402254Y-69991400D01* X113597746Y-69991400D01* X113778356Y-69916589D01* X113916589Y-69778356D01* X113991400Y-69597746D01* X113991400Y-69402254D01* X119008600Y-69402254D01* X119008600Y-69597746D01* X119083411Y-69778356D01* X119221644Y-69916589D01* X119402254Y-69991400D01* X119597746Y-69991400D01* X119778356Y-69916589D01* X119916589Y-69778356D01* X119991400Y-69597746D01* X119991400Y-69402254D01* X124008600Y-69402254D01* X124008600Y-69597746D01* X124083411Y-69778356D01* X124221644Y-69916589D01* X124402254Y-69991400D01* X124597746Y-69991400D01* X124778356Y-69916589D01* X124916589Y-69778356D01* X124991400Y-69597746D01* X124991400Y-69563108D01* X142411800Y-69563108D01* X142411800Y-69836892D01* X142516572Y-70089834D01* X142710166Y-70283428D01* X142963108Y-70388200D01* X143236892Y-70388200D01* X143489834Y-70283428D01* X143683428Y-70089834D01* X143788200Y-69836892D01* X143788200Y-69563108D01* X143683428Y-69310166D01* X143489834Y-69116572D01* X143236892Y-69011800D01* X142963108Y-69011800D01* X142710166Y-69116572D01* X142516572Y-69310166D01* X142411800Y-69563108D01* X124991400Y-69563108D01* X124991400Y-69402254D01* X124916589Y-69221644D01* X124778356Y-69083411D01* X124597746Y-69008600D01* X124402254Y-69008600D01* X124221644Y-69083411D01* X124083411Y-69221644D01* X124008600Y-69402254D01* X119991400Y-69402254D01* X119916589Y-69221644D01* X119778356Y-69083411D01* X119597746Y-69008600D01* X119402254Y-69008600D01* X119221644Y-69083411D01* X119083411Y-69221644D01* X119008600Y-69402254D01* X113991400Y-69402254D01* X113916589Y-69221644D01* X113778356Y-69083411D01* X113597746Y-69008600D01* X113402254Y-69008600D01* X113221644Y-69083411D01* X113083411Y-69221644D01* X113008600Y-69402254D01* X111991400Y-69402254D01* X111916589Y-69221644D01* X111778356Y-69083411D01* X111597746Y-69008600D01* X111402254Y-69008600D01* X111221644Y-69083411D01* X111083411Y-69221644D01* X111008600Y-69402254D01* X108991400Y-69402254D01* X108916589Y-69221644D01* X108778356Y-69083411D01* X108597746Y-69008600D01* X108402254Y-69008600D01* X108221644Y-69083411D01* X108083411Y-69221644D01* X108008600Y-69402254D01* X106991400Y-69402254D01* X106916589Y-69221644D01* X106778356Y-69083411D01* X106597746Y-69008600D01* X106402254Y-69008600D01* X106221644Y-69083411D01* X106083411Y-69221644D01* X106008600Y-69402254D01* X104991400Y-69402254D01* X104916589Y-69221644D01* X104778356Y-69083411D01* X104597746Y-69008600D01* X104402254Y-69008600D01* X104221644Y-69083411D01* X104083411Y-69221644D01* X104008600Y-69402254D01* X96488724Y-69402254D01* X96760596Y-69220596D01* X97012160Y-68844103D01* X97042385Y-68692150D01* X98057800Y-68692150D01* X98057800Y-68907850D01* X98140345Y-69107131D01* X98292869Y-69259655D01* X98492150Y-69342200D01* X98707850Y-69342200D01* X98907131Y-69259655D01* X99059655Y-69107131D01* X99142200Y-68907850D01* X99142200Y-68692150D01* X99059655Y-68492869D01* X98958737Y-68391951D01* X100956800Y-68391951D01* X100956800Y-68608049D01* X101039497Y-68807698D01* X101192302Y-68960503D01* X101391951Y-69043200D01* X101608049Y-69043200D01* X101807698Y-68960503D01* X101960503Y-68807698D01* X102043200Y-68608049D01* X102043200Y-68402254D01* X106008600Y-68402254D01* X106008600Y-68597746D01* X106083411Y-68778356D01* X106221644Y-68916589D01* X106402254Y-68991400D01* X106597746Y-68991400D01* X106778356Y-68916589D01* X106916589Y-68778356D01* X106991400Y-68597746D01* X106991400Y-68402254D01* X107008600Y-68402254D01* X107008600Y-68597746D01* X107083411Y-68778356D01* X107221644Y-68916589D01* X107402254Y-68991400D01* X107597746Y-68991400D01* X107778356Y-68916589D01* X107916589Y-68778356D01* X107991400Y-68597746D01* X107991400Y-68402254D01* X124008600Y-68402254D01* X124008600Y-68597746D01* X124083411Y-68778356D01* X124221644Y-68916589D01* X124402254Y-68991400D01* X124597746Y-68991400D01* X124778356Y-68916589D01* X124916589Y-68778356D01* X124991400Y-68597746D01* X124991400Y-68402254D01* X124916589Y-68221644D01* X124778356Y-68083411D01* X124597746Y-68008600D01* X124402254Y-68008600D01* X124221644Y-68083411D01* X124083411Y-68221644D01* X124008600Y-68402254D01* X107991400Y-68402254D01* X107916589Y-68221644D01* X107778356Y-68083411D01* X107597746Y-68008600D01* X107402254Y-68008600D01* X107221644Y-68083411D01* X107083411Y-68221644D01* X107008600Y-68402254D01* X106991400Y-68402254D01* X106916589Y-68221644D01* X106778356Y-68083411D01* X106597746Y-68008600D01* X106402254Y-68008600D01* X106221644Y-68083411D01* X106083411Y-68221644D01* X106008600Y-68402254D01* X102043200Y-68402254D01* X102043200Y-68391951D01* X101960503Y-68192302D01* X101807698Y-68039497D01* X101608049Y-67956800D01* X101391951Y-67956800D01* X101192302Y-68039497D01* X101039497Y-68192302D01* X100956800Y-68391951D01* X98958737Y-68391951D01* X98907131Y-68340345D01* X98707850Y-68257800D01* X98492150Y-68257800D01* X98292869Y-68340345D01* X98140345Y-68492869D01* X98057800Y-68692150D01* X97042385Y-68692150D01* X97100498Y-68400000D01* X97012160Y-67955897D01* X96835798Y-67691951D01* X104456800Y-67691951D01* X104456800Y-67908049D01* X104539497Y-68107698D01* X104692302Y-68260503D01* X104891951Y-68343200D01* X105108049Y-68343200D01* X105307698Y-68260503D01* X105460503Y-68107698D01* X105543200Y-67908049D01* X105543200Y-67791951D01* X141056800Y-67791951D01* X141056800Y-68008049D01* X141139497Y-68207698D01* X141292302Y-68360503D01* X141491951Y-68443200D01* X141708049Y-68443200D01* X141907698Y-68360503D01* X142060503Y-68207698D01* X142143200Y-68008049D01* X142143200Y-67791951D01* X142060503Y-67592302D01* X141907698Y-67439497D01* X141708049Y-67356800D01* X141491951Y-67356800D01* X141292302Y-67439497D01* X141139497Y-67592302D01* X141056800Y-67791951D01* X105543200Y-67791951D01* X105543200Y-67691951D01* X105460503Y-67492302D01* X105307698Y-67339497D01* X105108049Y-67256800D01* X104891951Y-67256800D01* X104692302Y-67339497D01* X104539497Y-67492302D01* X104456800Y-67691951D01* X96835798Y-67691951D01* X96760596Y-67579404D01* X96384103Y-67327840D01* X96052099Y-67261800D01* X95827901Y-67261800D01* X95495897Y-67327840D01* X95119404Y-67579404D01* X94867840Y-67955897D01* X94779502Y-68400000D01* X94538200Y-68400000D01* X94538200Y-68173598D01* X94364920Y-67755261D01* X94044739Y-67435080D01* X93871204Y-67363200D01* X94535769Y-67363200D01* X94570854Y-67356221D01* X94570856Y-67356221D01* X94762199Y-67318161D01* X94762200Y-67318161D01* X94816431Y-67295698D01* X94893125Y-67263930D01* X94893126Y-67263929D01* X95055337Y-67155542D01* X95155544Y-67055335D01* X95155545Y-67055332D01* X95263929Y-66893127D01* X95318161Y-66762200D01* X95318161Y-66762198D01* X95352024Y-66591951D01* X135656800Y-66591951D01* X135656800Y-66808049D01* X135739497Y-67007698D01* X135892302Y-67160503D01* X136091951Y-67243200D01* X136308049Y-67243200D01* X136431775Y-67191951D01* X144156800Y-67191951D01* X144156800Y-67408049D01* X144239497Y-67607698D01* X144392302Y-67760503D01* X144591951Y-67843200D01* X144808049Y-67843200D01* X145007698Y-67760503D01* X145160503Y-67607698D01* X145243200Y-67408049D01* X145243200Y-67191951D01* X145160503Y-66992302D01* X145007698Y-66839497D01* X144808049Y-66756800D01* X144591951Y-66756800D01* X144392302Y-66839497D01* X144239497Y-66992302D01* X144156800Y-67191951D01* X136431775Y-67191951D01* X136507698Y-67160503D01* X136660503Y-67007698D01* X136743200Y-66808049D01* X136743200Y-66591951D01* X136660503Y-66392302D01* X136507698Y-66239497D01* X136308049Y-66156800D01* X136091951Y-66156800D01* X135892302Y-66239497D01* X135739497Y-66392302D01* X135656800Y-66591951D01* X95352024Y-66591951D01* X95356221Y-66570856D01* X95356221Y-66570854D01* X95363200Y-66535769D01* X95363200Y-64843217D01* X95411800Y-64843217D01* X95411800Y-65156783D01* X95531796Y-65446480D01* X95753520Y-65668204D01* X96043217Y-65788200D01* X96356783Y-65788200D01* X96646480Y-65668204D01* X96839529Y-65475155D01* X96901740Y-65568260D01* X97162460Y-65742467D01* X97392373Y-65788200D01* X97547627Y-65788200D01* X97777540Y-65742467D01* X98038260Y-65568260D01* X98105000Y-65468376D01* X98171740Y-65568260D01* X98432460Y-65742467D01* X98662373Y-65788200D01* X98817627Y-65788200D01* X99047540Y-65742467D01* X99308260Y-65568260D01* X99375000Y-65468376D01* X99441740Y-65568260D01* X99702460Y-65742467D01* X99932373Y-65788200D01* X100087627Y-65788200D01* X100317540Y-65742467D01* X100578260Y-65568260D01* X100645000Y-65468376D01* X100711740Y-65568260D01* X100972460Y-65742467D01* X101202373Y-65788200D01* X101357627Y-65788200D01* X101587540Y-65742467D01* X101848260Y-65568260D01* X101915000Y-65468376D01* X101981740Y-65568260D01* X102242460Y-65742467D01* X102472373Y-65788200D01* X102627627Y-65788200D01* X102857540Y-65742467D01* X103118260Y-65568260D01* X103185000Y-65468376D01* X103251740Y-65568260D01* X103512460Y-65742467D01* X103742373Y-65788200D01* X103897627Y-65788200D01* X104127540Y-65742467D01* X104388260Y-65568260D01* X104455000Y-65468376D01* X104521740Y-65568260D01* X104782460Y-65742467D01* X105012373Y-65788200D01* X105167627Y-65788200D01* X105397540Y-65742467D01* X105658260Y-65568260D01* X105725000Y-65468376D01* X105791740Y-65568260D01* X106052460Y-65742467D01* X106282373Y-65788200D01* X106437627Y-65788200D01* X106667540Y-65742467D01* X106928260Y-65568260D01* X106995000Y-65468376D01* X107061740Y-65568260D01* X107322460Y-65742467D01* X107552373Y-65788200D01* X107707627Y-65788200D01* X107937540Y-65742467D01* X108198260Y-65568260D01* X108265000Y-65468376D01* X108331740Y-65568260D01* X108592460Y-65742467D01* X108822373Y-65788200D01* X108977627Y-65788200D01* X109207540Y-65742467D01* X109468260Y-65568260D01* X109535000Y-65468376D01* X109601740Y-65568260D01* X109862460Y-65742467D01* X110092373Y-65788200D01* X110247627Y-65788200D01* X110477540Y-65742467D01* X110738260Y-65568260D01* X110805000Y-65468376D01* X110871740Y-65568260D01* X111132460Y-65742467D01* X111362373Y-65788200D01* X111517627Y-65788200D01* X111747540Y-65742467D01* X112008260Y-65568260D01* X112075000Y-65468376D01* X112141740Y-65568260D01* X112402460Y-65742467D01* X112632373Y-65788200D01* X112787627Y-65788200D01* X113017540Y-65742467D01* X113278260Y-65568260D01* X113345000Y-65468376D01* X113411740Y-65568260D01* X113672460Y-65742467D01* X113902373Y-65788200D01* X114057627Y-65788200D01* X114287540Y-65742467D01* X114548260Y-65568260D01* X114615000Y-65468376D01* X114681740Y-65568260D01* X114942460Y-65742467D01* X115172373Y-65788200D01* X115327627Y-65788200D01* X115557540Y-65742467D01* X115818260Y-65568260D01* X115885000Y-65468376D01* X115951740Y-65568260D01* X116212460Y-65742467D01* X116442373Y-65788200D01* X116597627Y-65788200D01* X116827540Y-65742467D01* X117088260Y-65568260D01* X117155000Y-65468376D01* X117221740Y-65568260D01* X117482460Y-65742467D01* X117712373Y-65788200D01* X117867627Y-65788200D01* X118097540Y-65742467D01* X118358260Y-65568260D01* X118425000Y-65468376D01* X118491740Y-65568260D01* X118752460Y-65742467D01* X118982373Y-65788200D01* X119137627Y-65788200D01* X119367540Y-65742467D01* X119628260Y-65568260D01* X119695000Y-65468376D01* X119761740Y-65568260D01* X120022460Y-65742467D01* X120252373Y-65788200D01* X120407627Y-65788200D01* X120637540Y-65742467D01* X120898260Y-65568260D01* X120965000Y-65468376D01* X121031740Y-65568260D01* X121292460Y-65742467D01* X121522373Y-65788200D01* X121677627Y-65788200D01* X121907540Y-65742467D01* X122168260Y-65568260D01* X122235000Y-65468376D01* X122301740Y-65568260D01* X122562460Y-65742467D01* X122792373Y-65788200D01* X122947627Y-65788200D01* X123177540Y-65742467D01* X123438260Y-65568260D01* X123505000Y-65468376D01* X123571740Y-65568260D01* X123832460Y-65742467D01* X124062373Y-65788200D01* X124217627Y-65788200D01* X124447540Y-65742467D01* X124708260Y-65568260D01* X124775000Y-65468376D01* X124841740Y-65568260D01* X125102460Y-65742467D01* X125332373Y-65788200D01* X125487627Y-65788200D01* X125717540Y-65742467D01* X125978260Y-65568260D01* X126045000Y-65468376D01* X126111740Y-65568260D01* X126372460Y-65742467D01* X126602373Y-65788200D01* X126757627Y-65788200D01* X126987540Y-65742467D01* X127248260Y-65568260D01* X127315000Y-65468376D01* X127381740Y-65568260D01* X127642460Y-65742467D01* X127872373Y-65788200D01* X128027627Y-65788200D01* X128257540Y-65742467D01* X128518260Y-65568260D01* X128585000Y-65468376D01* X128651740Y-65568260D01* X128912460Y-65742467D01* X129142373Y-65788200D01* X129297627Y-65788200D01* X129527540Y-65742467D01* X129788260Y-65568260D01* X129855000Y-65468376D01* X129921740Y-65568260D01* X130182460Y-65742467D01* X130412373Y-65788200D01* X130567627Y-65788200D01* X130797540Y-65742467D01* X131058260Y-65568260D01* X131125000Y-65468376D01* X131191740Y-65568260D01* X131452460Y-65742467D01* X131682373Y-65788200D01* X131837627Y-65788200D01* X132067540Y-65742467D01* X132328260Y-65568260D01* X132395000Y-65468376D01* X132461740Y-65568260D01* X132722460Y-65742467D01* X132952373Y-65788200D01* X133107627Y-65788200D01* X133337540Y-65742467D01* X133598260Y-65568260D01* X133772467Y-65307540D01* X133833641Y-65000000D01* X133792258Y-64791951D01* X135656800Y-64791951D01* X135656800Y-65008049D01* X135739497Y-65207698D01* X135892302Y-65360503D01* X136091951Y-65443200D01* X136308049Y-65443200D01* X136507698Y-65360503D01* X136618201Y-65250000D01* X139306154Y-65250000D01* X139306154Y-66150000D01* X139343746Y-66338987D01* X139450798Y-66499202D01* X139611013Y-66606254D01* X139800000Y-66643846D01* X140200000Y-66643846D01* X140388987Y-66606254D01* X140549202Y-66499202D01* X140656254Y-66338987D01* X140662211Y-66309038D01* X140753837Y-66446164D01* X140981479Y-66598270D01* X141250000Y-66651682D01* X141518522Y-66598270D01* X141746164Y-66446164D01* X141875000Y-66253348D01* X142003837Y-66446164D01* X142231479Y-66598270D01* X142500000Y-66651682D01* X142768522Y-66598270D01* X142996164Y-66446164D01* X143125000Y-66253348D01* X143253837Y-66446164D01* X143481479Y-66598270D01* X143750000Y-66651682D01* X144018522Y-66598270D01* X144246164Y-66446164D01* X144398270Y-66218522D01* X144438200Y-66017779D01* X144438200Y-65382221D01* X144398270Y-65181478D01* X144246163Y-64953836D01* X144018521Y-64801730D01* X143750000Y-64748318D01* X143481478Y-64801730D01* X143253836Y-64953837D01* X143125000Y-65146653D01* X142996163Y-64953836D01* X142768521Y-64801730D01* X142500000Y-64748318D01* X142231478Y-64801730D01* X142003836Y-64953837D01* X141875000Y-65146653D01* X141746163Y-64953836D01* X141518521Y-64801730D01* X141250000Y-64748318D01* X140981478Y-64801730D01* X140753836Y-64953837D01* X140662211Y-65090963D01* X140656254Y-65061013D01* X140549202Y-64900798D01* X140388987Y-64793746D01* X140200000Y-64756154D01* X139800000Y-64756154D01* X139611013Y-64793746D01* X139450798Y-64900798D01* X139343746Y-65061013D01* X139306154Y-65250000D01* X136618201Y-65250000D01* X136660503Y-65207698D01* X136743200Y-65008049D01* X136743200Y-64791951D01* X136660503Y-64592302D01* X136507698Y-64439497D01* X136308049Y-64356800D01* X136091951Y-64356800D01* X135892302Y-64439497D01* X135739497Y-64592302D01* X135656800Y-64791951D01* X133792258Y-64791951D01* X133772467Y-64692460D01* X133598260Y-64431740D01* X133337540Y-64257533D01* X133107627Y-64211800D01* X132952373Y-64211800D01* X132722460Y-64257533D01* X132461740Y-64431740D01* X132395000Y-64531624D01* X132328260Y-64431740D01* X132067540Y-64257533D01* X131837627Y-64211800D01* X131682373Y-64211800D01* X131452460Y-64257533D01* X131191740Y-64431740D01* X131125000Y-64531624D01* X131058260Y-64431740D01* X130797540Y-64257533D01* X130567627Y-64211800D01* X130412373Y-64211800D01* X130182460Y-64257533D01* X129921740Y-64431740D01* X129855000Y-64531624D01* X129788260Y-64431740D01* X129527540Y-64257533D01* X129297627Y-64211800D01* X129142373Y-64211800D01* X128912460Y-64257533D01* X128651740Y-64431740D01* X128585000Y-64531624D01* X128518260Y-64431740D01* X128257540Y-64257533D01* X128027627Y-64211800D01* X127872373Y-64211800D01* X127642460Y-64257533D01* X127381740Y-64431740D01* X127315000Y-64531624D01* X127248260Y-64431740D01* X126987540Y-64257533D01* X126757627Y-64211800D01* X126602373Y-64211800D01* X126372460Y-64257533D01* X126111740Y-64431740D01* X126045000Y-64531624D01* X125978260Y-64431740D01* X125717540Y-64257533D01* X125487627Y-64211800D01* X125332373Y-64211800D01* X125102460Y-64257533D01* X124841740Y-64431740D01* X124775000Y-64531624D01* X124708260Y-64431740D01* X124447540Y-64257533D01* X124217627Y-64211800D01* X124062373Y-64211800D01* X123832460Y-64257533D01* X123571740Y-64431740D01* X123505000Y-64531624D01* X123438260Y-64431740D01* X123177540Y-64257533D01* X122947627Y-64211800D01* X122792373Y-64211800D01* X122562460Y-64257533D01* X122301740Y-64431740D01* X122235000Y-64531624D01* X122168260Y-64431740D01* X121907540Y-64257533D01* X121677627Y-64211800D01* X121522373Y-64211800D01* X121292460Y-64257533D01* X121031740Y-64431740D01* X120965000Y-64531624D01* X120898260Y-64431740D01* X120637540Y-64257533D01* X120407627Y-64211800D01* X120252373Y-64211800D01* X120022460Y-64257533D01* X119761740Y-64431740D01* X119695000Y-64531624D01* X119628260Y-64431740D01* X119367540Y-64257533D01* X119137627Y-64211800D01* X118982373Y-64211800D01* X118752460Y-64257533D01* X118491740Y-64431740D01* X118425000Y-64531624D01* X118358260Y-64431740D01* X118097540Y-64257533D01* X117867627Y-64211800D01* X117712373Y-64211800D01* X117482460Y-64257533D01* X117221740Y-64431740D01* X117155000Y-64531624D01* X117088260Y-64431740D01* X116827540Y-64257533D01* X116597627Y-64211800D01* X116442373Y-64211800D01* X116212460Y-64257533D01* X115951740Y-64431740D01* X115885000Y-64531624D01* X115818260Y-64431740D01* X115557540Y-64257533D01* X115327627Y-64211800D01* X115172373Y-64211800D01* X114942460Y-64257533D01* X114681740Y-64431740D01* X114615000Y-64531624D01* X114548260Y-64431740D01* X114287540Y-64257533D01* X114057627Y-64211800D01* X113902373Y-64211800D01* X113672460Y-64257533D01* X113411740Y-64431740D01* X113345000Y-64531624D01* X113278260Y-64431740D01* X113017540Y-64257533D01* X112787627Y-64211800D01* X112632373Y-64211800D01* X112402460Y-64257533D01* X112141740Y-64431740D01* X112075000Y-64531624D01* X112008260Y-64431740D01* X111747540Y-64257533D01* X111517627Y-64211800D01* X111362373Y-64211800D01* X111132460Y-64257533D01* X110871740Y-64431740D01* X110805000Y-64531624D01* X110738260Y-64431740D01* X110477540Y-64257533D01* X110247627Y-64211800D01* X110092373Y-64211800D01* X109862460Y-64257533D01* X109601740Y-64431740D01* X109535000Y-64531624D01* X109468260Y-64431740D01* X109207540Y-64257533D01* X108977627Y-64211800D01* X108822373Y-64211800D01* X108592460Y-64257533D01* X108331740Y-64431740D01* X108265000Y-64531624D01* X108198260Y-64431740D01* X107937540Y-64257533D01* X107707627Y-64211800D01* X107552373Y-64211800D01* X107322460Y-64257533D01* X107061740Y-64431740D01* X106995000Y-64531624D01* X106928260Y-64431740D01* X106667540Y-64257533D01* X106437627Y-64211800D01* X106282373Y-64211800D01* X106052460Y-64257533D01* X105791740Y-64431740D01* X105725000Y-64531624D01* X105658260Y-64431740D01* X105397540Y-64257533D01* X105167627Y-64211800D01* X105012373Y-64211800D01* X104782460Y-64257533D01* X104521740Y-64431740D01* X104455000Y-64531624D01* X104388260Y-64431740D01* X104127540Y-64257533D01* X103897627Y-64211800D01* X103742373Y-64211800D01* X103512460Y-64257533D01* X103251740Y-64431740D01* X103185000Y-64531624D01* X103118260Y-64431740D01* X102857540Y-64257533D01* X102627627Y-64211800D01* X102472373Y-64211800D01* X102242460Y-64257533D01* X101981740Y-64431740D01* X101915000Y-64531624D01* X101848260Y-64431740D01* X101587540Y-64257533D01* X101357627Y-64211800D01* X101202373Y-64211800D01* X100972460Y-64257533D01* X100711740Y-64431740D01* X100645000Y-64531624D01* X100578260Y-64431740D01* X100317540Y-64257533D01* X100087627Y-64211800D01* X99932373Y-64211800D01* X99702460Y-64257533D01* X99441740Y-64431740D01* X99375000Y-64531624D01* X99308260Y-64431740D01* X99047540Y-64257533D01* X98817627Y-64211800D01* X98662373Y-64211800D01* X98432460Y-64257533D01* X98171740Y-64431740D01* X98105000Y-64531624D01* X98038260Y-64431740D01* X97777540Y-64257533D01* X97547627Y-64211800D01* X97392373Y-64211800D01* X97162460Y-64257533D01* X96901740Y-64431740D01* X96839529Y-64524845D01* X96646480Y-64331796D01* X96356783Y-64211800D01* X96043217Y-64211800D01* X95753520Y-64331796D01* X95531796Y-64553520D01* X95411800Y-64843217D01* X95363200Y-64843217D01* X95363200Y-63963200D01* X145036800Y-63963200D01* X145036801Y-66535769D01* X145036801Y-66535769D01* G37* X145036801Y-66535769D02* X145043779Y-66570849D01* X145043779Y-66570856D01* X145081839Y-66762198D01* X145081839Y-66762200D01* X145096758Y-66798217D01* X145136070Y-66893125D01* X145136071Y-66893126D01* X145244458Y-67055337D01* X145344665Y-67155544D01* X145344668Y-67155545D01* X145506873Y-67263929D01* X145506875Y-67263930D01* X145529338Y-67273234D01* X145637800Y-67318161D01* X145637802Y-67318161D01* X145829144Y-67356221D01* X145829146Y-67356221D01* X145864231Y-67363200D01* X147179113Y-67363200D01* X146992869Y-67440345D01* X146840345Y-67592869D01* X146757800Y-67792150D01* X146757800Y-68007850D01* X146840345Y-68207131D01* X146992869Y-68359655D01* X147192150Y-68442200D01* X147407850Y-68442200D01* X147422409Y-68436169D01* X147357800Y-68592150D01* X147357800Y-68807850D01* X147440345Y-69007131D01* X147583214Y-69150000D01* X147440345Y-69292869D01* X147357800Y-69492150D01* X147357800Y-69707850D01* X147440345Y-69907131D01* X147592869Y-70059655D01* X147792150Y-70142200D01* X148007850Y-70142200D01* X148207131Y-70059655D01* X148359655Y-69907131D01* X148442200Y-69707850D01* X148442200Y-69492150D01* X148359655Y-69292869D01* X148216786Y-69150000D01* X148274636Y-69092150D01* X148657800Y-69092150D01* X148657800Y-69307850D01* X148740345Y-69507131D01* X148883214Y-69650000D01* X148740345Y-69792869D01* X148657800Y-69992150D01* X148657800Y-70207850D01* X148740345Y-70407131D01* X148892869Y-70559655D01* X149092150Y-70642200D01* X149307850Y-70642200D01* X149507131Y-70559655D01* X149574636Y-70492150D01* X153157800Y-70492150D01* X153157800Y-70707850D01* X153240345Y-70907131D01* X153392869Y-71059655D01* X153592150Y-71142200D01* X153807850Y-71142200D01* X154007131Y-71059655D01* X154159655Y-70907131D01* X154207281Y-70792150D01* X157357800Y-70792150D01* X157357800Y-71007850D01* X157440345Y-71207131D01* X157592869Y-71359655D01* X157792150Y-71442200D01* X158007850Y-71442200D01* X158128681Y-71392150D01* X162357800Y-71392150D01* X162357800Y-71607850D01* X162440345Y-71807131D01* X162592869Y-71959655D01* X162792150Y-72042200D01* X163007850Y-72042200D01* X163207131Y-71959655D01* X163359655Y-71807131D01* X163442200Y-71607850D01* X163442200Y-71392150D01* X168257800Y-71392150D01* X168257800Y-71607850D01* X168340345Y-71807131D01* X168492869Y-71959655D01* X168692150Y-72042200D01* X168907850Y-72042200D01* X169107131Y-71959655D01* X169259655Y-71807131D01* X169342200Y-71607850D01* X169342200Y-71392150D01* X169259655Y-71192869D01* X169107131Y-71040345D01* X168907850Y-70957800D01* X168692150Y-70957800D01* X168492869Y-71040345D01* X168340345Y-71192869D01* X168257800Y-71392150D01* X163442200Y-71392150D01* X163359655Y-71192869D01* X163207131Y-71040345D01* X163007850Y-70957800D01* X162792150Y-70957800D01* X162592869Y-71040345D01* X162440345Y-71192869D01* X162357800Y-71392150D01* X158128681Y-71392150D01* X158207131Y-71359655D01* X158359655Y-71207131D01* X158442200Y-71007850D01* X158442200Y-70940000D01* X179139502Y-70940000D01* X179227840Y-71384103D01* X179479404Y-71760596D01* X179855897Y-72012160D01* X180187901Y-72078200D01* X180412099Y-72078200D01* X180744103Y-72012160D01* X181120596Y-71760596D01* X181372160Y-71384103D01* X181460498Y-70940000D01* X181679502Y-70940000D01* X181767840Y-71384103D01* X182019404Y-71760596D01* X182395897Y-72012160D01* X182727901Y-72078200D01* X182952099Y-72078200D01* X183284103Y-72012160D01* X183660596Y-71760596D01* X183912160Y-71384103D01* X184000498Y-70940000D01* X183912160Y-70495897D01* X183660596Y-70119404D01* X183284103Y-69867840D01* X182952099Y-69801800D01* X182727901Y-69801800D01* X182395897Y-69867840D01* X182019404Y-70119404D01* X181767840Y-70495897D01* X181679502Y-70940000D01* X181460498Y-70940000D01* X181372160Y-70495897D01* X181120596Y-70119404D01* X180744103Y-69867840D01* X180412099Y-69801800D01* X180187901Y-69801800D01* X179855897Y-69867840D01* X179479404Y-70119404D01* X179227840Y-70495897D01* X179139502Y-70940000D01* X158442200Y-70940000D01* X158442200Y-70792150D01* X158359655Y-70592869D01* X158207131Y-70440345D01* X158007850Y-70357800D01* X157792150Y-70357800D01* X157592869Y-70440345D01* X157440345Y-70592869D01* X157357800Y-70792150D01* X154207281Y-70792150D01* X154242200Y-70707850D01* X154242200Y-70492150D01* X154159655Y-70292869D01* X154007131Y-70140345D01* X153807850Y-70057800D01* X153592150Y-70057800D01* X153392869Y-70140345D01* X153240345Y-70292869D01* X153157800Y-70492150D01* X149574636Y-70492150D01* X149659655Y-70407131D01* X149742200Y-70207850D01* X149742200Y-69992150D01* X149659655Y-69792869D01* X149516786Y-69650000D01* X149621937Y-69544849D01* X185711800Y-69544849D01* X185711800Y-70455151D01* X186060158Y-71296161D01* X186703839Y-71939842D01* X187544849Y-72288200D01* X188455151Y-72288200D01* X189296161Y-71939842D01* X189939842Y-71296161D01* X190288200Y-70455151D01* X190288200Y-69544849D01* X189979674Y-68800000D01* X196679502Y-68800000D01* X196767840Y-69244103D01* X197019404Y-69620596D01* X197395897Y-69872160D01* X197727901Y-69938200D01* X197952099Y-69938200D01* X198284103Y-69872160D01* X198660596Y-69620596D01* X198912160Y-69244103D01* X199000498Y-68800000D01* X199219502Y-68800000D01* X199307840Y-69244103D01* X199559404Y-69620596D01* X199935897Y-69872160D01* X200267901Y-69938200D01* X200492099Y-69938200D01* X200824103Y-69872160D01* X201200596Y-69620596D01* X201251208Y-69544849D01* X205711800Y-69544849D01* X205711800Y-70455151D01* X206060158Y-71296161D01* X206703839Y-71939842D01* X207544849Y-72288200D01* X208455151Y-72288200D01* X209296161Y-71939842D01* X209939842Y-71296161D01* X210288200Y-70455151D01* X210288200Y-69544849D01* X209939842Y-68703839D01* X209296161Y-68060158D01* X208455151Y-67711800D01* X207544849Y-67711800D01* X206703839Y-68060158D01* X206060158Y-68703839D01* X205711800Y-69544849D01* X201251208Y-69544849D01* X201452160Y-69244103D01* X201540498Y-68800000D01* X201452160Y-68355897D01* X201200596Y-67979404D01* X200824103Y-67727840D01* X200492099Y-67661800D01* X200267901Y-67661800D01* X199935897Y-67727840D01* X199559404Y-67979404D01* X199307840Y-68355897D01* X199219502Y-68800000D01* X199000498Y-68800000D01* X198912160Y-68355897D01* X198660596Y-67979404D01* X198284103Y-67727840D01* X197952099Y-67661800D01* X197727901Y-67661800D01* X197395897Y-67727840D01* X197019404Y-67979404D01* X196767840Y-68355897D01* X196679502Y-68800000D01* X189979674Y-68800000D01* X189939842Y-68703839D01* X189296161Y-68060158D01* X188455151Y-67711800D01* X187544849Y-67711800D01* X186703839Y-68060158D01* X186060158Y-68703839D01* X185711800Y-69544849D01* X149621937Y-69544849D01* X149659655Y-69507131D01* X149742200Y-69307850D01* X149742200Y-69092150D01* X149659655Y-68892869D01* X149507131Y-68740345D01* X149307850Y-68657800D01* X149092150Y-68657800D01* X148892869Y-68740345D01* X148740345Y-68892869D01* X148657800Y-69092150D01* X148274636Y-69092150D01* X148359655Y-69007131D01* X148442200Y-68807850D01* X148442200Y-68592150D01* X148359655Y-68392869D01* X148207131Y-68240345D01* X148007850Y-68157800D01* X147792150Y-68157800D01* X147777591Y-68163831D01* X147842200Y-68007850D01* X147842200Y-67792150D01* X147759655Y-67592869D01* X147607131Y-67440345D01* X147420887Y-67363200D01* X179828796Y-67363200D01* X179655261Y-67435080D01* X179335080Y-67755261D01* X179161800Y-68173598D01* X179161800Y-68626402D01* X179335080Y-69044739D01* X179655261Y-69364920D01* X180073598Y-69538200D01* X180526402Y-69538200D01* X180944739Y-69364920D01* X181264920Y-69044739D01* X181438200Y-68626402D01* X181438200Y-68173598D01* X181264920Y-67755261D01* X180944739Y-67435080D01* X180771204Y-67363200D01* X182342977Y-67363200D01* X182019404Y-67579404D01* X181767840Y-67955897D01* X181679502Y-68400000D01* X181767840Y-68844103D01* X182019404Y-69220596D01* X182395897Y-69472160D01* X182727901Y-69538200D01* X182952099Y-69538200D01* X183284103Y-69472160D01* X183660596Y-69220596D01* X183912160Y-68844103D01* X184000498Y-68400000D01* X183912160Y-67955897D01* X183660596Y-67579404D01* X183337023Y-67363200D01* X210636801Y-67363200D01* X210636801Y-74415000D01* X189500000Y-74415000D01* X189467472Y-74421470D01* X189439896Y-74439896D01* X189421470Y-74467472D01* X189415000Y-74500000D01* X189415000Y-82616800D01* X189118462Y-82616800D01* X188746068Y-82771050D01* X188461050Y-83056068D01* X188306800Y-83428462D01* X188306800Y-83831538D01* X188404248Y-84066800D01* X188009060Y-84066800D01* X187434518Y-84304783D01* X186994783Y-84744518D01* X186756800Y-85319060D01* X186756800Y-85940940D01* X186994783Y-86515482D01* X187434518Y-86955217D01* X188009060Y-87193200D01* X188630940Y-87193200D01* X189205482Y-86955217D01* X189415000Y-86745699D01* X189415000Y-95000000D01* X189421470Y-95032528D01* X189439896Y-95060104D01* X189467472Y-95078530D01* X189500000Y-95085000D01* X210636800Y-95085000D01* X210636800Y-106636800D01* X101217514Y-106636800D01* X101243200Y-106574789D01* X101243200Y-106358691D01* X101160503Y-106159042D01* X101007698Y-106006237D01* X100808049Y-105923540D01* X100591951Y-105923540D01* X100392302Y-106006237D01* X100239497Y-106159042D01* X100156800Y-106358691D01* X100156800Y-106574789D01* X100182486Y-106636800D01* X98699137Y-106636800D01* X99024103Y-106572160D01* X99400596Y-106320596D01* X99652160Y-105944103D01* X99662533Y-105891951D01* X116456800Y-105891951D01* X116456800Y-106108049D01* X116539497Y-106307698D01* X116692302Y-106460503D01* X116891951Y-106543200D01* X117108049Y-106543200D01* X117307698Y-106460503D01* X117460503Y-106307698D01* X117543200Y-106108049D01* X117543200Y-105892150D01* X129757800Y-105892150D01* X129757800Y-106107850D01* X129840345Y-106307131D01* X129992869Y-106459655D01* X130192150Y-106542200D01* X130407850Y-106542200D01* X130607131Y-106459655D01* X130759655Y-106307131D01* X130842200Y-106107850D01* X130842200Y-105892150D01* X134157800Y-105892150D01* X134157800Y-106107850D01* X134240345Y-106307131D01* X134392869Y-106459655D01* X134592150Y-106542200D01* X134807850Y-106542200D01* X135007131Y-106459655D01* X135159655Y-106307131D01* X135242200Y-106107850D01* X135242200Y-105892150D01* X139557800Y-105892150D01* X139557800Y-106107850D01* X139640345Y-106307131D01* X139792869Y-106459655D01* X139992150Y-106542200D01* X140207850Y-106542200D01* X140407131Y-106459655D01* X140559655Y-106307131D01* X140642200Y-106107850D01* X140642200Y-105892150D01* X151457800Y-105892150D01* X151457800Y-106107850D01* X151540345Y-106307131D01* X151692869Y-106459655D01* X151892150Y-106542200D01* X152107850Y-106542200D01* X152307131Y-106459655D01* X152459655Y-106307131D01* X152542200Y-106107850D01* X152542200Y-105892150D01* X152857800Y-105892150D01* X152857800Y-106107850D01* X152940345Y-106307131D01* X153092869Y-106459655D01* X153292150Y-106542200D01* X153507850Y-106542200D01* X153707131Y-106459655D01* X153859655Y-106307131D01* X153942200Y-106107850D01* X153942200Y-105892150D01* X169357800Y-105892150D01* X169357800Y-106107850D01* X169440345Y-106307131D01* X169592869Y-106459655D01* X169792150Y-106542200D01* X170007850Y-106542200D01* X170207131Y-106459655D01* X170359655Y-106307131D01* X170442200Y-106107850D01* X170442200Y-105892150D01* X170457800Y-105892150D01* X170457800Y-106107850D01* X170540345Y-106307131D01* X170692869Y-106459655D01* X170892150Y-106542200D01* X171107850Y-106542200D01* X171307131Y-106459655D01* X171459655Y-106307131D01* X171542200Y-106107850D01* X171542200Y-105892150D01* X171459655Y-105692869D01* X171307131Y-105540345D01* X171107850Y-105457800D01* X170892150Y-105457800D01* X170692869Y-105540345D01* X170540345Y-105692869D01* X170457800Y-105892150D01* X170442200Y-105892150D01* X170359655Y-105692869D01* X170207131Y-105540345D01* X170007850Y-105457800D01* X169792150Y-105457800D01* X169592869Y-105540345D01* X169440345Y-105692869D01* X169357800Y-105892150D01* X153942200Y-105892150D01* X153859655Y-105692869D01* X153707131Y-105540345D01* X153507850Y-105457800D01* X153292150Y-105457800D01* X153092869Y-105540345D01* X152940345Y-105692869D01* X152857800Y-105892150D01* X152542200Y-105892150D01* X152459655Y-105692869D01* X152307131Y-105540345D01* X152107850Y-105457800D01* X151892150Y-105457800D01* X151692869Y-105540345D01* X151540345Y-105692869D01* X151457800Y-105892150D01* X140642200Y-105892150D01* X140559655Y-105692869D01* X140407131Y-105540345D01* X140207850Y-105457800D01* X139992150Y-105457800D01* X139792869Y-105540345D01* X139640345Y-105692869D01* X139557800Y-105892150D01* X135242200Y-105892150D01* X135159655Y-105692869D01* X135007131Y-105540345D01* X134807850Y-105457800D01* X134592150Y-105457800D01* X134392869Y-105540345D01* X134240345Y-105692869D01* X134157800Y-105892150D01* X130842200Y-105892150D01* X130759655Y-105692869D01* X130607131Y-105540345D01* X130407850Y-105457800D01* X130192150Y-105457800D01* X129992869Y-105540345D01* X129840345Y-105692869D01* X129757800Y-105892150D01* X117543200Y-105892150D01* X117543200Y-105891951D01* X117460503Y-105692302D01* X117307698Y-105539497D01* X117108049Y-105456800D01* X116891951Y-105456800D01* X116692302Y-105539497D01* X116539497Y-105692302D01* X116456800Y-105891951D01* X99662533Y-105891951D01* X99740498Y-105500000D01* X99681273Y-105202254D01* X114208600Y-105202254D01* X114208600Y-105397746D01* X114283411Y-105578356D01* X114421644Y-105716589D01* X114602254Y-105791400D01* X114797746Y-105791400D01* X114978356Y-105716589D01* X115116589Y-105578356D01* X115191400Y-105397746D01* X115191400Y-105202254D01* X115116589Y-105021644D01* X115100041Y-105005096D01* X115207698Y-104960503D01* X115300000Y-104868201D01* X115392302Y-104960503D01* X115591951Y-105043200D01* X115808049Y-105043200D01* X116007698Y-104960503D01* X116105093Y-104863108D01* X117311800Y-104863108D01* X117311800Y-105136892D01* X117416572Y-105389834D01* X117610166Y-105583428D01* X117863108Y-105688200D01* X118136892Y-105688200D01* X118389834Y-105583428D01* X118583428Y-105389834D01* X118688200Y-105136892D01* X118688200Y-104863108D01* X118583428Y-104610166D01* X118389834Y-104416572D01* X118136892Y-104311800D01* X117863108Y-104311800D01* X117610166Y-104416572D01* X117416572Y-104610166D01* X117311800Y-104863108D01* X116105093Y-104863108D01* X116160503Y-104807698D01* X116237024Y-104622960D01* X116402254Y-104691400D01* X116597746Y-104691400D01* X116778356Y-104616589D01* X116916589Y-104478356D01* X116991400Y-104297746D01* X116991400Y-104102254D01* X118408600Y-104102254D01* X118408600Y-104297746D01* X118483411Y-104478356D01* X118621644Y-104616589D01* X118802254Y-104691400D01* X118997746Y-104691400D01* X119178356Y-104616589D01* X119300000Y-104494945D01* X119421644Y-104616589D01* X119602254Y-104691400D01* X119797746Y-104691400D01* X119978356Y-104616589D01* X120116589Y-104478356D01* X120191400Y-104297746D01* X120191400Y-104102254D01* X120808600Y-104102254D01* X120808600Y-104297746D01* X120883411Y-104478356D01* X121021644Y-104616589D01* X121088806Y-104644408D01* X121040345Y-104692869D01* X120957800Y-104892150D01* X120957800Y-105107850D01* X121040345Y-105307131D01* X121192869Y-105459655D01* X121392150Y-105542200D01* X121607850Y-105542200D01* X121807131Y-105459655D01* X121959655Y-105307131D01* X122000000Y-105209730D01* X122040345Y-105307131D01* X122192869Y-105459655D01* X122392150Y-105542200D01* X122607850Y-105542200D01* X122807131Y-105459655D01* X122959655Y-105307131D01* X123042200Y-105107850D01* X123042200Y-104892150D01* X122959655Y-104692869D01* X122807131Y-104540345D01* X122607850Y-104457800D01* X122392150Y-104457800D01* X122192869Y-104540345D01* X122040345Y-104692869D01* X122000000Y-104790270D01* X121959655Y-104692869D01* X121807131Y-104540345D01* X121699275Y-104495670D01* X121716589Y-104478356D01* X121791400Y-104297746D01* X121791400Y-104102254D01* X121787215Y-104092150D01* X127257800Y-104092150D01* X127257800Y-104307850D01* X127340345Y-104507131D01* X127492869Y-104659655D01* X127692150Y-104742200D01* X127819911Y-104742200D01* X127757800Y-104892150D01* X127757800Y-105107850D01* X127840345Y-105307131D01* X127992869Y-105459655D01* X128192150Y-105542200D01* X128407850Y-105542200D01* X128607131Y-105459655D01* X128759655Y-105307131D01* X128842200Y-105107850D01* X128842200Y-104892150D01* X139057802Y-104892150D01* X139057802Y-105107850D01* X139140347Y-105307131D01* X139292871Y-105459655D01* X139492152Y-105542200D01* X139707852Y-105542200D01* X139907133Y-105459655D01* X140059657Y-105307131D01* X140142202Y-105107850D01* X140142202Y-104892150D01* X140059657Y-104692869D01* X139958938Y-104592150D01* X151457800Y-104592150D01* X151457800Y-104807850D01* X151540345Y-105007131D01* X151692869Y-105159655D01* X151892150Y-105242200D01* X152107850Y-105242200D01* X152307131Y-105159655D01* X152459655Y-105007131D01* X152542200Y-104807850D01* X152542200Y-104592150D01* X152857800Y-104592150D01* X152857800Y-104807850D01* X152940345Y-105007131D01* X153092869Y-105159655D01* X153292150Y-105242200D01* X153507850Y-105242200D01* X153707131Y-105159655D01* X153859655Y-105007131D01* X153942200Y-104807850D01* X153942200Y-104592150D01* X153900779Y-104492150D01* X157957800Y-104492150D01* X157957800Y-104707850D01* X158040345Y-104907131D01* X158192869Y-105059655D01* X158392150Y-105142200D01* X158607850Y-105142200D01* X158807131Y-105059655D01* X158959655Y-104907131D01* X159042200Y-104707850D01* X159042200Y-104492150D01* X159457800Y-104492150D01* X159457800Y-104707850D01* X159540345Y-104907131D01* X159692869Y-105059655D01* X159892150Y-105142200D01* X160107850Y-105142200D01* X160307131Y-105059655D01* X160459655Y-104907131D01* X160542200Y-104707850D01* X160542200Y-104492150D01* X160459655Y-104292869D01* X160307131Y-104140345D01* X160107850Y-104057800D01* X159892150Y-104057800D01* X159692869Y-104140345D01* X159540345Y-104292869D01* X159457800Y-104492150D01* X159042200Y-104492150D01* X158959655Y-104292869D01* X158807131Y-104140345D01* X158607850Y-104057800D01* X158392150Y-104057800D01* X158192869Y-104140345D01* X158040345Y-104292869D01* X157957800Y-104492150D01* X153900779Y-104492150D01* X153859655Y-104392869D01* X153707131Y-104240345D01* X153507850Y-104157800D01* X153292150Y-104157800D01* X153092869Y-104240345D01* X152940345Y-104392869D01* X152857800Y-104592150D01* X152542200Y-104592150D01* X152459655Y-104392869D01* X152307131Y-104240345D01* X152107850Y-104157800D01* X151892150Y-104157800D01* X151692869Y-104240345D01* X151540345Y-104392869D01* X151457800Y-104592150D01* X139958938Y-104592150D01* X139907133Y-104540345D01* X139707852Y-104457800D01* X139492152Y-104457800D01* X139292871Y-104540345D01* X139140347Y-104692869D01* X139057802Y-104892150D01* X128842200Y-104892150D01* X128759655Y-104692869D01* X128607131Y-104540345D01* X128407850Y-104457800D01* X128280089Y-104457800D01* X128342200Y-104307850D01* X128342200Y-104092150D01* X128259655Y-103892869D01* X128107131Y-103740345D01* X127907850Y-103657800D01* X127692150Y-103657800D01* X127492869Y-103740345D01* X127340345Y-103892869D01* X127257800Y-104092150D01* X121787215Y-104092150D01* X121716589Y-103921644D01* X121578356Y-103783411D01* X121397746Y-103708600D01* X121202254Y-103708600D01* X121021644Y-103783411D01* X120883411Y-103921644D01* X120808600Y-104102254D01* X120191400Y-104102254D01* X120116589Y-103921644D01* X119978356Y-103783411D01* X119797746Y-103708600D01* X119602254Y-103708600D01* X119421644Y-103783411D01* X119300000Y-103905055D01* X119178356Y-103783411D01* X118997746Y-103708600D01* X118802254Y-103708600D01* X118621644Y-103783411D01* X118483411Y-103921644D01* X118408600Y-104102254D01* X116991400Y-104102254D01* X116916589Y-103921644D01* X116778356Y-103783411D01* X116597746Y-103708600D01* X116402254Y-103708600D01* X116221644Y-103783411D01* X116083411Y-103921644D01* X116026717Y-104058516D01* X116007698Y-104039497D01* X115808049Y-103956800D01* X115591951Y-103956800D01* X115392302Y-104039497D01* X115300000Y-104131799D01* X115207698Y-104039497D01* X115008049Y-103956800D01* X114791951Y-103956800D01* X114592302Y-104039497D01* X114439497Y-104192302D01* X114356800Y-104391951D01* X114356800Y-104608049D01* X114439497Y-104807698D01* X114487805Y-104856006D01* X114421644Y-104883411D01* X114283411Y-105021644D01* X114208600Y-105202254D01* X99681273Y-105202254D01* X99652160Y-105055897D01* X99400596Y-104679404D01* X99024103Y-104427840D01* X98692099Y-104361800D01* X98467901Y-104361800D01* X98135897Y-104427840D01* X97759404Y-104679404D01* X97507840Y-105055897D01* X97419502Y-105500000D01* X97507840Y-105944103D01* X97759404Y-106320596D01* X98135897Y-106572160D01* X98460863Y-106636800D01* X96159137Y-106636800D01* X96484103Y-106572160D01* X96860596Y-106320596D01* X97112160Y-105944103D01* X97200498Y-105500000D01* X97112160Y-105055897D01* X96860596Y-104679404D01* X96484103Y-104427840D01* X96152099Y-104361800D01* X95927901Y-104361800D01* X95595897Y-104427840D01* X95219404Y-104679404D01* X94967840Y-105055897D01* X94879502Y-105500000D01* X94967840Y-105944103D01* X95219404Y-106320596D01* X95595897Y-106572160D01* X95920863Y-106636800D01* X93729782Y-106636800D01* X94144739Y-106464920D01* X94464920Y-106144739D01* X94638200Y-105726402D01* X94638200Y-105273598D01* X94464920Y-104855261D01* X94144739Y-104535080D01* X93726402Y-104361800D01* X93273598Y-104361800D01* X92855261Y-104535080D01* X92535080Y-104855261D01* X92361800Y-105273598D01* X92361800Y-105726402D01* X92535080Y-106144739D01* X92855261Y-106464920D01* X93270218Y-106636800D01* X66363200Y-106636800D01* X66363200Y-103544849D01* X66711800Y-103544849D01* X66711800Y-104455151D01* X67060158Y-105296161D01* X67703839Y-105939842D01* X68544849Y-106288200D01* X69455151Y-106288200D01* X70296161Y-105939842D01* X70939842Y-105296161D01* X70979673Y-105200000D01* X75279502Y-105200000D01* X75367840Y-105644103D01* X75619404Y-106020596D01* X75995897Y-106272160D01* X76327901Y-106338200D01* X76552099Y-106338200D01* X76884103Y-106272160D01* X77260596Y-106020596D01* X77512160Y-105644103D01* X77600498Y-105200000D01* X77819502Y-105200000D01* X77907840Y-105644103D01* X78159404Y-106020596D01* X78535897Y-106272160D01* X78867901Y-106338200D01* X79092099Y-106338200D01* X79424103Y-106272160D01* X79800596Y-106020596D01* X80052160Y-105644103D01* X80140498Y-105200000D01* X80359502Y-105200000D01* X80447840Y-105644103D01* X80699404Y-106020596D01* X81075897Y-106272160D01* X81407901Y-106338200D01* X81632099Y-106338200D01* X81964103Y-106272160D01* X82340596Y-106020596D01* X82592160Y-105644103D01* X82680498Y-105200000D01* X82899502Y-105200000D01* X82987840Y-105644103D01* X83239404Y-106020596D01* X83615897Y-106272160D01* X83947901Y-106338200D01* X84172099Y-106338200D01* X84504103Y-106272160D01* X84880596Y-106020596D01* X85132160Y-105644103D01* X85220498Y-105200000D01* X85132160Y-104755897D01* X84880596Y-104379404D01* X84504103Y-104127840D01* X84172099Y-104061800D01* X83947901Y-104061800D01* X83615897Y-104127840D01* X83239404Y-104379404D01* X82987840Y-104755897D01* X82899502Y-105200000D01* X82680498Y-105200000D01* X82592160Y-104755897D01* X82340596Y-104379404D01* X81964103Y-104127840D01* X81632099Y-104061800D01* X81407901Y-104061800D01* X81075897Y-104127840D01* X80699404Y-104379404D01* X80447840Y-104755897D01* X80359502Y-105200000D01* X80140498Y-105200000D01* X80052160Y-104755897D01* X79800596Y-104379404D01* X79424103Y-104127840D01* X79092099Y-104061800D01* X78867901Y-104061800D01* X78535897Y-104127840D01* X78159404Y-104379404D01* X77907840Y-104755897D01* X77819502Y-105200000D01* X77600498Y-105200000D01* X77512160Y-104755897D01* X77260596Y-104379404D01* X76884103Y-104127840D01* X76552099Y-104061800D01* X76327901Y-104061800D01* X75995897Y-104127840D01* X75619404Y-104379404D01* X75367840Y-104755897D01* X75279502Y-105200000D01* X70979673Y-105200000D01* X71288200Y-104455151D01* X71288200Y-103544849D01* X86711800Y-103544849D01* X86711800Y-104455151D01* X87060158Y-105296161D01* X87703839Y-105939842D01* X88544849Y-106288200D01* X89455151Y-106288200D01* X90296161Y-105939842D01* X90939842Y-105296161D01* X91288200Y-104455151D01* X91288200Y-103544849D01* X91045948Y-102960000D01* X92339502Y-102960000D01* X92427840Y-103404103D01* X92679404Y-103780596D01* X93055897Y-104032160D01* X93387901Y-104098200D01* X93612099Y-104098200D01* X93944103Y-104032160D01* X94320596Y-103780596D01* X94572160Y-103404103D01* X94660498Y-102960000D01* X94879502Y-102960000D01* X94967840Y-103404103D01* X95219404Y-103780596D01* X95595897Y-104032160D01* X95927901Y-104098200D01* X96152099Y-104098200D01* X96484103Y-104032160D01* X96860596Y-103780596D01* X97112160Y-103404103D01* X97200498Y-102960000D01* X97419502Y-102960000D01* X97507840Y-103404103D01* X97759404Y-103780596D01* X98135897Y-104032160D01* X98467901Y-104098200D01* X98692099Y-104098200D01* X99024103Y-104032160D01* X99233941Y-103891951D01* X100991069Y-103891951D01* X100991069Y-104108049D01* X101073766Y-104307698D01* X101226571Y-104460503D01* X101426220Y-104543200D01* X101642318Y-104543200D01* X101841967Y-104460503D01* X101994772Y-104307698D01* X102077469Y-104108049D01* X102077469Y-104102254D01* X104008600Y-104102254D01* X104008600Y-104297746D01* X104083411Y-104478356D01* X104221644Y-104616589D01* X104402254Y-104691400D01* X104597746Y-104691400D01* X104778356Y-104616589D01* X104900000Y-104494945D01* X105021644Y-104616589D01* X105202254Y-104691400D01* X105397746Y-104691400D01* X105578356Y-104616589D01* X105700000Y-104494945D01* X105821644Y-104616589D01* X106002254Y-104691400D01* X106197746Y-104691400D01* X106378356Y-104616589D01* X106464080Y-104530866D01* X106592869Y-104659655D01* X106792150Y-104742200D01* X107007850Y-104742200D01* X107207131Y-104659655D01* X107299293Y-104567494D01* X107392302Y-104660503D01* X107591951Y-104743200D01* X107808049Y-104743200D01* X108007698Y-104660503D01* X108100708Y-104567494D01* X108192869Y-104659655D01* X108392150Y-104742200D01* X108607850Y-104742200D01* X108807131Y-104659655D01* X108959655Y-104507131D01* X109042200Y-104307850D01* X109042200Y-104102254D01* X110408600Y-104102254D01* X110408600Y-104297746D01* X110483411Y-104478356D01* X110621644Y-104616589D01* X110802254Y-104691400D01* X110997746Y-104691400D01* X111178356Y-104616589D01* X111300000Y-104494945D01* X111421644Y-104616589D01* X111602254Y-104691400D01* X111797746Y-104691400D01* X111978356Y-104616589D01* X112116589Y-104478356D01* X112191400Y-104297746D01* X112191400Y-104102254D01* X112116589Y-103921644D01* X111978356Y-103783411D01* X111797746Y-103708600D01* X111602254Y-103708600D01* X111421644Y-103783411D01* X111300000Y-103905055D01* X111178356Y-103783411D01* X110997746Y-103708600D01* X110802254Y-103708600D01* X110621644Y-103783411D01* X110483411Y-103921644D01* X110408600Y-104102254D01* X109042200Y-104102254D01* X109042200Y-104092150D01* X108959655Y-103892869D01* X108807131Y-103740345D01* X108607850Y-103657800D01* X108392150Y-103657800D01* X108192869Y-103740345D01* X108100708Y-103832507D01* X108007698Y-103739497D01* X107808049Y-103656800D01* X107591951Y-103656800D01* X107392302Y-103739497D01* X107299293Y-103832507D01* X107207131Y-103740345D01* X107007850Y-103657800D01* X106792150Y-103657800D01* X106592869Y-103740345D01* X106464080Y-103869135D01* X106378356Y-103783411D01* X106197746Y-103708600D01* X106002254Y-103708600D01* X105821644Y-103783411D01* X105700000Y-103905055D01* X105578356Y-103783411D01* X105397746Y-103708600D01* X105202254Y-103708600D01* X105021644Y-103783411D01* X104900000Y-103905055D01* X104778356Y-103783411D01* X104597746Y-103708600D01* X104402254Y-103708600D01* X104221644Y-103783411D01* X104083411Y-103921644D01* X104008600Y-104102254D01* X102077469Y-104102254D01* X102077469Y-103891951D01* X101994772Y-103692302D01* X101841967Y-103539497D01* X101642318Y-103456800D01* X101426220Y-103456800D01* X101226571Y-103539497D01* X101073766Y-103692302D01* X100991069Y-103891951D01* X99233941Y-103891951D01* X99400596Y-103780596D01* X99652160Y-103404103D01* X99740498Y-102960000D01* X99652160Y-102515897D01* X99400596Y-102139404D01* X99024103Y-101887840D01* X98692099Y-101821800D01* X98467901Y-101821800D01* X98135897Y-101887840D01* X97759404Y-102139404D01* X97507840Y-102515897D01* X97419502Y-102960000D01* X97200498Y-102960000D01* X97112160Y-102515897D01* X96860596Y-102139404D01* X96484103Y-101887840D01* X96152099Y-101821800D01* X95927901Y-101821800D01* X95595897Y-101887840D01* X95219404Y-102139404D01* X94967840Y-102515897D01* X94879502Y-102960000D01* X94660498Y-102960000D01* X94572160Y-102515897D01* X94320596Y-102139404D01* X93944103Y-101887840D01* X93612099Y-101821800D01* X93387901Y-101821800D01* X93055897Y-101887840D01* X92679404Y-102139404D01* X92427840Y-102515897D01* X92339502Y-102960000D01* X91045948Y-102960000D01* X90939842Y-102703839D01* X90296161Y-102060158D01* X89645164Y-101790506D01* X101596800Y-101790506D01* X101596800Y-102209494D01* X101757140Y-102596590D01* X102053410Y-102892860D01* X102440506Y-103053200D01* X102859494Y-103053200D01* X103246590Y-102892860D01* X103542860Y-102596590D01* X103703200Y-102209494D01* X103703200Y-101790506D01* X125296800Y-101790506D01* X125296800Y-102209494D01* X125457140Y-102596590D01* X125753410Y-102892860D01* X126140506Y-103053200D01* X126559494Y-103053200D01* X126946590Y-102892860D01* X127242860Y-102596590D01* X127403200Y-102209494D01* X127403200Y-101790506D01* X127242860Y-101403410D01* X126946590Y-101107140D01* X126559494Y-100946800D01* X126140506Y-100946800D01* X125753410Y-101107140D01* X125457140Y-101403410D01* X125296800Y-101790506D01* X103703200Y-101790506D01* X103542860Y-101403410D01* X103246590Y-101107140D01* X102859494Y-100946800D01* X102440506Y-100946800D01* X102053410Y-101107140D01* X101757140Y-101403410D01* X101596800Y-101790506D01* X89645164Y-101790506D01* X89455151Y-101711800D01* X88544849Y-101711800D01* X87703839Y-102060158D01* X87060158Y-102703839D01* X86711800Y-103544849D01* X71288200Y-103544849D01* X70939842Y-102703839D01* X70296161Y-102060158D01* X69455151Y-101711800D01* X68544849Y-101711800D01* X67703839Y-102060158D01* X67060158Y-102703839D01* X66711800Y-103544849D01* X66363200Y-103544849D01* X66363200Y-100391951D01* X92156800Y-100391951D01* X92156800Y-100608049D01* X92239497Y-100807698D01* X92392302Y-100960503D01* X92591951Y-101043200D01* X92808049Y-101043200D01* X93007698Y-100960503D01* X93160503Y-100807698D01* X93208446Y-100691951D01* X96456800Y-100691951D01* X96456800Y-100908049D01* X96539497Y-101107698D01* X96692302Y-101260503D01* X96891951Y-101343200D01* X97108049Y-101343200D01* X97307698Y-101260503D01* X97460503Y-101107698D01* X97543200Y-100908049D01* X97543200Y-100892150D01* X129857800Y-100892150D01* X129857800Y-101107850D01* X129940345Y-101307131D01* X130083214Y-101450000D01* X129940345Y-101592869D01* X129857800Y-101792150D01* X129857800Y-102007850D01* X129940345Y-102207131D01* X130092869Y-102359655D01* X130220636Y-102412578D01* X130140345Y-102492869D01* X130057800Y-102692150D01* X130057800Y-102907850D01* X130140345Y-103107131D01* X130292869Y-103259655D01* X130349925Y-103283289D01* X130240345Y-103392869D01* X130157800Y-103592150D01* X130157800Y-103807850D01* X130240345Y-104007131D01* X130392869Y-104159655D01* X130592150Y-104242200D01* X130807850Y-104242200D01* X131007131Y-104159655D01* X131074636Y-104092150D01* X132557800Y-104092150D01* X132557800Y-104307850D01* X132640345Y-104507131D01* X132792869Y-104659655D01* X132992150Y-104742200D01* X133207850Y-104742200D01* X133407131Y-104659655D01* X133559655Y-104507131D01* X133642200Y-104307850D01* X133642200Y-104092150D01* X133559655Y-103892869D01* X133407131Y-103740345D01* X133207850Y-103657800D01* X132992150Y-103657800D01* X132792869Y-103740345D01* X132640345Y-103892869D01* X132557800Y-104092150D01* X131074636Y-104092150D01* X131159655Y-104007131D01* X131242200Y-103807850D01* X131242200Y-103592150D01* X131159655Y-103392869D01* X131007131Y-103240345D01* X130950075Y-103216711D01* X131059655Y-103107131D01* X131065942Y-103091951D01* X137856800Y-103091951D01* X137856800Y-103308049D01* X137939497Y-103507698D01* X138092302Y-103660503D01* X138291951Y-103743200D01* X138508049Y-103743200D01* X138707698Y-103660503D01* X138860503Y-103507698D01* X138943200Y-103308049D01* X138943200Y-103292150D01* X154057800Y-103292150D01* X154057800Y-103507850D01* X154140345Y-103707131D01* X154292869Y-103859655D01* X154492150Y-103942200D01* X154707850Y-103942200D01* X154907131Y-103859655D01* X155059655Y-103707131D01* X155142200Y-103507850D01* X155142200Y-103292150D01* X157957800Y-103292150D01* X157957800Y-103507850D01* X158040345Y-103707131D01* X158192869Y-103859655D01* X158392150Y-103942200D01* X158607850Y-103942200D01* X158807131Y-103859655D01* X158959655Y-103707131D01* X159042200Y-103507850D01* X159042200Y-103292150D01* X158959655Y-103092869D01* X158858936Y-102992150D01* X160957800Y-102992150D01* X160957800Y-103207850D01* X161040345Y-103407131D01* X161192869Y-103559655D01* X161249925Y-103583289D01* X161240345Y-103592869D01* X161157800Y-103792150D01* X161157800Y-104007850D01* X161240345Y-104207131D01* X161392869Y-104359655D01* X161592150Y-104442200D01* X161807850Y-104442200D01* X162007131Y-104359655D01* X162016711Y-104350075D01* X162040345Y-104407131D01* X162192869Y-104559655D01* X162392150Y-104642200D01* X162607850Y-104642200D01* X162807131Y-104559655D01* X162874636Y-104492150D01* X169357800Y-104492150D01* X169357800Y-104707850D01* X169440345Y-104907131D01* X169592869Y-105059655D01* X169792150Y-105142200D01* X170007850Y-105142200D01* X170207131Y-105059655D01* X170359655Y-104907131D01* X170442200Y-104707850D01* X170442200Y-104492150D01* X170457800Y-104492150D01* X170457800Y-104707850D01* X170540345Y-104907131D01* X170692869Y-105059655D01* X170892150Y-105142200D01* X171107850Y-105142200D01* X171307131Y-105059655D01* X171459655Y-104907131D01* X171542200Y-104707850D01* X171542200Y-104492150D01* X171459655Y-104292869D01* X171307131Y-104140345D01* X171107850Y-104057800D01* X170892150Y-104057800D01* X170692869Y-104140345D01* X170540345Y-104292869D01* X170457800Y-104492150D01* X170442200Y-104492150D01* X170359655Y-104292869D01* X170207131Y-104140345D01* X170007850Y-104057800D01* X169792150Y-104057800D01* X169592869Y-104140345D01* X169440345Y-104292869D01* X169357800Y-104492150D01* X162874636Y-104492150D01* X162959655Y-104407131D01* X163042200Y-104207850D01* X163042200Y-103992150D01* X162959655Y-103792869D01* X162807131Y-103640345D01* X162607850Y-103557800D01* X162392150Y-103557800D01* X162192869Y-103640345D01* X162183289Y-103649925D01* X162159655Y-103592869D01* X162007131Y-103440345D01* X161950075Y-103416711D01* X161959655Y-103407131D01* X162042200Y-103207850D01* X162042200Y-102992150D01* X161959655Y-102792869D01* X161807131Y-102640345D01* X161607850Y-102557800D01* X161392150Y-102557800D01* X161192869Y-102640345D01* X161040345Y-102792869D01* X160957800Y-102992150D01* X158858936Y-102992150D01* X158807131Y-102940345D01* X158607850Y-102857800D01* X158392150Y-102857800D01* X158192869Y-102940345D01* X158040345Y-103092869D01* X157957800Y-103292150D01* X155142200Y-103292150D01* X155059655Y-103092869D01* X154907131Y-102940345D01* X154707850Y-102857800D01* X154492150Y-102857800D01* X154292869Y-102940345D01* X154140345Y-103092869D01* X154057800Y-103292150D01* X138943200Y-103292150D01* X138943200Y-103091951D01* X138860503Y-102892302D01* X138707698Y-102739497D01* X138508049Y-102656800D01* X138291951Y-102656800D01* X138092302Y-102739497D01* X137939497Y-102892302D01* X137856800Y-103091951D01* X131065942Y-103091951D01* X131142200Y-102907850D01* X131142200Y-102692150D01* X131059655Y-102492869D01* X130907131Y-102340345D01* X130790298Y-102291951D01* X139456800Y-102291951D01* X139456800Y-102508049D01* X139539497Y-102707698D01* X139692302Y-102860503D01* X139891951Y-102943200D01* X140108049Y-102943200D01* X140307698Y-102860503D01* X140460503Y-102707698D01* X140543200Y-102508049D01* X140543200Y-102492150D01* X168057800Y-102492150D01* X168057800Y-102707850D01* X168140345Y-102907131D01* X168292869Y-103059655D01* X168492150Y-103142200D01* X168707850Y-103142200D01* X168907131Y-103059655D01* X168974636Y-102992150D01* X171457800Y-102992150D01* X171457800Y-103207850D01* X171540345Y-103407131D01* X171692869Y-103559655D01* X171892150Y-103642200D01* X172107850Y-103642200D01* X172307131Y-103559655D01* X172321937Y-103544849D01* X185711800Y-103544849D01* X185711800Y-104455151D01* X186060158Y-105296161D01* X186703839Y-105939842D01* X187544849Y-106288200D01* X188455151Y-106288200D01* X189296161Y-105939842D01* X189939842Y-105296161D01* X190288200Y-104455151D01* X190288200Y-103544849D01* X205711800Y-103544849D01* X205711800Y-104455151D01* X206060158Y-105296161D01* X206703839Y-105939842D01* X207544849Y-106288200D01* X208455151Y-106288200D01* X209296161Y-105939842D01* X209939842Y-105296161D01* X210288200Y-104455151D01* X210288200Y-103544849D01* X209939842Y-102703839D01* X209296161Y-102060158D01* X208455151Y-101711800D01* X207544849Y-101711800D01* X206703839Y-102060158D01* X206060158Y-102703839D01* X205711800Y-103544849D01* X190288200Y-103544849D01* X189939842Y-102703839D01* X189296161Y-102060158D01* X188455151Y-101711800D01* X187544849Y-101711800D01* X186703839Y-102060158D01* X186060158Y-102703839D01* X185711800Y-103544849D01* X172321937Y-103544849D01* X172459655Y-103407131D01* X172542200Y-103207850D01* X172542200Y-102992150D01* X172459655Y-102792869D01* X172307131Y-102640345D01* X172107850Y-102557800D01* X171892150Y-102557800D01* X171692869Y-102640345D01* X171540345Y-102792869D01* X171457800Y-102992150D01* X168974636Y-102992150D01* X169059655Y-102907131D01* X169142200Y-102707850D01* X169142200Y-102492150D01* X169100697Y-102391951D01* X178556800Y-102391951D01* X178556800Y-102608049D01* X178639497Y-102807698D01* X178792302Y-102960503D01* X178991951Y-103043200D01* X179208049Y-103043200D01* X179407698Y-102960503D01* X179560503Y-102807698D01* X179643200Y-102608049D01* X179643200Y-102391951D01* X179560503Y-102192302D01* X179407698Y-102039497D01* X179208049Y-101956800D01* X178991951Y-101956800D01* X178792302Y-102039497D01* X178639497Y-102192302D01* X178556800Y-102391951D01* X169100697Y-102391951D01* X169059655Y-102292869D01* X168907131Y-102140345D01* X168707850Y-102057800D01* X168492150Y-102057800D01* X168292869Y-102140345D01* X168140345Y-102292869D01* X168057800Y-102492150D01* X140543200Y-102492150D01* X140543200Y-102291951D01* X140460503Y-102092302D01* X140307698Y-101939497D01* X140108049Y-101856800D01* X139891951Y-101856800D01* X139692302Y-101939497D01* X139539497Y-102092302D01* X139456800Y-102291951D01* X130790298Y-102291951D01* X130779364Y-102287422D01* X130859655Y-102207131D01* X130942200Y-102007850D01* X130942200Y-101792150D01* X130859655Y-101592869D01* X130716786Y-101450000D01* X130859655Y-101307131D01* X130942200Y-101107850D01* X130942200Y-101091951D01* X137056800Y-101091951D01* X137056800Y-101308049D01* X137139497Y-101507698D01* X137292302Y-101660503D01* X137491951Y-101743200D01* X137708049Y-101743200D01* X137907698Y-101660503D01* X138060503Y-101507698D01* X138100541Y-101411037D01* X138140345Y-101507131D01* X138292869Y-101659655D01* X138492150Y-101742200D01* X138707850Y-101742200D01* X138907131Y-101659655D01* X139059655Y-101507131D01* X139142200Y-101307850D01* X139142200Y-101192150D01* X142457800Y-101192150D01* X142457800Y-101407850D01* X142540345Y-101607131D01* X142692869Y-101759655D01* X142892150Y-101842200D01* X143107850Y-101842200D01* X143307131Y-101759655D01* X143459655Y-101607131D01* X143542200Y-101407850D01* X143542200Y-101192150D01* X143459655Y-100992869D01* X143307131Y-100840345D01* X143107850Y-100757800D01* X142892150Y-100757800D01* X142692869Y-100840345D01* X142540345Y-100992869D01* X142457800Y-101192150D01* X139142200Y-101192150D01* X139142200Y-101092150D01* X139059655Y-100892869D01* X138907131Y-100740345D01* X138707850Y-100657800D01* X138492150Y-100657800D01* X138292869Y-100740345D01* X138140345Y-100892869D01* X138100541Y-100988963D01* X138060503Y-100892302D01* X137907698Y-100739497D01* X137708049Y-100656800D01* X137491951Y-100656800D01* X137292302Y-100739497D01* X137139497Y-100892302D01* X137056800Y-101091951D01* X130942200Y-101091951D01* X130942200Y-100892150D01* X130859655Y-100692869D01* X130707131Y-100540345D01* X130507850Y-100457800D01* X130292150Y-100457800D01* X130092869Y-100540345D01* X129940345Y-100692869D01* X129857800Y-100892150D01* X97543200Y-100892150D01* X97543200Y-100691951D01* X97460503Y-100492302D01* X97307698Y-100339497D01* X97108049Y-100256800D01* X96891951Y-100256800D01* X96692302Y-100339497D01* X96539497Y-100492302D01* X96456800Y-100691951D01* X93208446Y-100691951D01* X93243200Y-100608049D01* X93243200Y-100391951D01* X93160503Y-100192302D01* X93007698Y-100039497D01* X92808049Y-99956800D01* X92591951Y-99956800D01* X92392302Y-100039497D01* X92239497Y-100192302D01* X92156800Y-100391951D01* X66363200Y-100391951D01* X66363200Y-99457598D01* X77184352Y-99457598D01* X77184352Y-99673298D01* X77266897Y-99872579D01* X77419421Y-100025103D01* X77618702Y-100107648D01* X77834402Y-100107648D01* X78033683Y-100025103D01* X78186207Y-99872579D01* X78268752Y-99673298D01* X78268752Y-99604752D01* X78337298Y-99604752D01* X78536579Y-99522207D01* X78689103Y-99369683D01* X78771648Y-99170402D01* X78771648Y-99092150D01* X95557800Y-99092150D01* X95557800Y-99307850D01* X95640345Y-99507131D01* X95792869Y-99659655D01* X95992150Y-99742200D01* X96207850Y-99742200D01* X96407131Y-99659655D01* X96559655Y-99507131D01* X96642200Y-99307850D01* X96642200Y-99092150D01* X96559655Y-98892869D01* X96407131Y-98740345D01* X96290779Y-98692150D01* X100257794Y-98692150D01* X100257794Y-98907850D01* X100340339Y-99107131D01* X100492863Y-99259655D01* X100692144Y-99342200D01* X100907844Y-99342200D01* X101107125Y-99259655D01* X101259649Y-99107131D01* X101342194Y-98907850D01* X101342194Y-98702254D01* X104008600Y-98702254D01* X104008600Y-98897746D01* X104083411Y-99078356D01* X104221644Y-99216589D01* X104402254Y-99291400D01* X104597746Y-99291400D01* X104778356Y-99216589D01* X104900000Y-99094945D01* X105021644Y-99216589D01* X105202254Y-99291400D01* X105397746Y-99291400D01* X105578356Y-99216589D01* X105700000Y-99094945D01* X105821644Y-99216589D01* X106002254Y-99291400D01* X106197746Y-99291400D01* X106378356Y-99216589D01* X106500000Y-99094945D01* X106621644Y-99216589D01* X106802254Y-99291400D01* X106997746Y-99291400D01* X107178356Y-99216589D01* X107300000Y-99094945D01* X107421644Y-99216589D01* X107602254Y-99291400D01* X107797746Y-99291400D01* X107978356Y-99216589D01* X108116589Y-99078356D01* X108191400Y-98897746D01* X108191400Y-98702254D01* X109608600Y-98702254D01* X109608600Y-98897746D01* X109683411Y-99078356D01* X109821644Y-99216589D01* X110002254Y-99291400D01* X110197746Y-99291400D01* X110378356Y-99216589D01* X110500000Y-99094945D01* X110621644Y-99216589D01* X110802254Y-99291400D01* X110997746Y-99291400D01* X111178356Y-99216589D01* X111300000Y-99094945D01* X111421644Y-99216589D01* X111602254Y-99291400D01* X111797746Y-99291400D01* X111978356Y-99216589D01* X112100000Y-99094945D01* X112221644Y-99216589D01* X112402254Y-99291400D01* X112597746Y-99291400D01* X112778356Y-99216589D01* X112916589Y-99078356D01* X112991400Y-98897746D01* X112991400Y-98702254D01* X114408600Y-98702254D01* X114408600Y-98897746D01* X114483411Y-99078356D01* X114621644Y-99216589D01* X114802254Y-99291400D01* X114997746Y-99291400D01* X115178356Y-99216589D01* X115300000Y-99094945D01* X115421644Y-99216589D01* X115602254Y-99291400D01* X115797746Y-99291400D01* X115978356Y-99216589D01* X116100000Y-99094945D01* X116221644Y-99216589D01* X116402254Y-99291400D01* X116597746Y-99291400D01* X116778356Y-99216589D01* X116900000Y-99094945D01* X117021644Y-99216589D01* X117202254Y-99291400D01* X117397746Y-99291400D01* X117578356Y-99216589D01* X117716589Y-99078356D01* X117791400Y-98897746D01* X117791400Y-98702254D01* X119208600Y-98702254D01* X119208600Y-98897746D01* X119283411Y-99078356D01* X119421644Y-99216589D01* X119602254Y-99291400D01* X119797746Y-99291400D01* X119978356Y-99216589D01* X120100000Y-99094945D01* X120221644Y-99216589D01* X120402254Y-99291400D01* X120597746Y-99291400D01* X120778356Y-99216589D01* X120900000Y-99094945D01* X121021644Y-99216589D01* X121202254Y-99291400D01* X121397746Y-99291400D01* X121578356Y-99216589D01* X121700000Y-99094945D01* X121821644Y-99216589D01* X122002254Y-99291400D01* X122197746Y-99291400D01* X122378356Y-99216589D01* X122516589Y-99078356D01* X122591400Y-98897746D01* X122591400Y-98702254D01* X124008600Y-98702254D01* X124008600Y-98897746D01* X124083411Y-99078356D01* X124221644Y-99216589D01* X124402254Y-99291400D01* X124597746Y-99291400D01* X124778356Y-99216589D01* X124916589Y-99078356D01* X124991400Y-98897746D01* X124991400Y-98702254D01* X124916589Y-98521644D01* X124778356Y-98383411D01* X124597746Y-98308600D01* X124402254Y-98308600D01* X124221644Y-98383411D01* X124083411Y-98521644D01* X124008600Y-98702254D01* X122591400Y-98702254D01* X122516589Y-98521644D01* X122378356Y-98383411D01* X122197746Y-98308600D01* X122002254Y-98308600D01* X121821644Y-98383411D01* X121700000Y-98505055D01* X121578356Y-98383411D01* X121397746Y-98308600D01* X121202254Y-98308600D01* X121021644Y-98383411D01* X120900000Y-98505055D01* X120778356Y-98383411D01* X120597746Y-98308600D01* X120402254Y-98308600D01* X120221644Y-98383411D01* X120100000Y-98505055D01* X119978356Y-98383411D01* X119797746Y-98308600D01* X119602254Y-98308600D01* X119421644Y-98383411D01* X119283411Y-98521644D01* X119208600Y-98702254D01* X117791400Y-98702254D01* X117716589Y-98521644D01* X117578356Y-98383411D01* X117397746Y-98308600D01* X117202254Y-98308600D01* X117021644Y-98383411D01* X116900000Y-98505055D01* X116778356Y-98383411D01* X116597746Y-98308600D01* X116402254Y-98308600D01* X116221644Y-98383411D01* X116100000Y-98505055D01* X115978356Y-98383411D01* X115797746Y-98308600D01* X115602254Y-98308600D01* X115421644Y-98383411D01* X115300000Y-98505055D01* X115178356Y-98383411D01* X114997746Y-98308600D01* X114802254Y-98308600D01* X114621644Y-98383411D01* X114483411Y-98521644D01* X114408600Y-98702254D01* X112991400Y-98702254D01* X112916589Y-98521644D01* X112778356Y-98383411D01* X112597746Y-98308600D01* X112402254Y-98308600D01* X112221644Y-98383411D01* X112100000Y-98505055D01* X111978356Y-98383411D01* X111797746Y-98308600D01* X111602254Y-98308600D01* X111421644Y-98383411D01* X111300000Y-98505055D01* X111178356Y-98383411D01* X110997746Y-98308600D01* X110802254Y-98308600D01* X110621644Y-98383411D01* X110500000Y-98505055D01* X110378356Y-98383411D01* X110197746Y-98308600D01* X110002254Y-98308600D01* X109821644Y-98383411D01* X109683411Y-98521644D01* X109608600Y-98702254D01* X108191400Y-98702254D01* X108116589Y-98521644D01* X107978356Y-98383411D01* X107797746Y-98308600D01* X107602254Y-98308600D01* X107421644Y-98383411D01* X107300000Y-98505055D01* X107178356Y-98383411D01* X106997746Y-98308600D01* X106802254Y-98308600D01* X106621644Y-98383411D01* X106500000Y-98505055D01* X106378356Y-98383411D01* X106197746Y-98308600D01* X106002254Y-98308600D01* X105821644Y-98383411D01* X105700000Y-98505055D01* X105578356Y-98383411D01* X105397746Y-98308600D01* X105202254Y-98308600D01* X105021644Y-98383411D01* X104900000Y-98505055D01* X104778356Y-98383411D01* X104597746Y-98308600D01* X104402254Y-98308600D01* X104221644Y-98383411D01* X104083411Y-98521644D01* X104008600Y-98702254D01* X101342194Y-98702254D01* X101342194Y-98692150D01* X101259649Y-98492869D01* X101107125Y-98340345D01* X100907844Y-98257800D01* X100692144Y-98257800D01* X100492863Y-98340345D01* X100340339Y-98492869D01* X100257794Y-98692150D01* X96290779Y-98692150D01* X96207850Y-98657800D01* X95992150Y-98657800D01* X95792869Y-98740345D01* X95640345Y-98892869D01* X95557800Y-99092150D01* X78771648Y-99092150D01* X78771648Y-98954702D01* X78689103Y-98755421D01* X78536579Y-98602897D01* X78337298Y-98520352D01* X78121598Y-98520352D01* X77922317Y-98602897D01* X77769793Y-98755421D01* X77687248Y-98954702D01* X77687248Y-99023248D01* X77618702Y-99023248D01* X77419421Y-99105793D01* X77266897Y-99258317D01* X77184352Y-99457598D01* X66363200Y-99457598D01* X66363200Y-97679598D01* X77692352Y-97679598D01* X77692352Y-97895298D01* X77774897Y-98094579D01* X77927421Y-98247103D01* X78126702Y-98329648D01* X78342402Y-98329648D01* X78541683Y-98247103D01* X78694207Y-98094579D01* X78776752Y-97895298D01* X78776752Y-97826752D01* X78845298Y-97826752D01* X79044579Y-97744207D01* X79197103Y-97591683D01* X79279648Y-97392402D01* X79279648Y-97191951D01* X92256800Y-97191951D01* X92256800Y-97408049D01* X92339497Y-97607698D01* X92431799Y-97700000D01* X92339497Y-97792302D01* X92256800Y-97991951D01* X92256800Y-98208049D01* X92339497Y-98407698D01* X92492302Y-98560503D01* X92691951Y-98643200D01* X92908049Y-98643200D01* X93107698Y-98560503D01* X93260503Y-98407698D01* X93343200Y-98208049D01* X93343200Y-97991951D01* X93260503Y-97792302D01* X93260152Y-97791951D01* X95356800Y-97791951D01* X95356800Y-98008049D01* X95439497Y-98207698D01* X95592302Y-98360503D01* X95791951Y-98443200D01* X96008049Y-98443200D01* X96207698Y-98360503D01* X96360503Y-98207698D01* X96443200Y-98008049D01* X96443200Y-97791951D01* X96360503Y-97592302D01* X96207698Y-97439497D01* X96092912Y-97391951D01* X101456800Y-97391951D01* X101456800Y-97608049D01* X101539497Y-97807698D01* X101692302Y-97960503D01* X101891951Y-98043200D01* X102108049Y-98043200D01* X102307698Y-97960503D01* X102460503Y-97807698D01* X102525634Y-97650458D01* X102578611Y-97778356D01* X102716844Y-97916589D01* X102897454Y-97991400D01* X103092946Y-97991400D01* X103273556Y-97916589D01* X103300000Y-97890145D01* X103326444Y-97916589D01* X103507054Y-97991400D01* X103702546Y-97991400D01* X103883156Y-97916589D01* X104021389Y-97778356D01* X104096200Y-97597746D01* X104096200Y-97402254D01* X104021389Y-97221644D01* X103883156Y-97083411D01* X103702546Y-97008600D01* X103507054Y-97008600D01* X103326444Y-97083411D01* X103300000Y-97109855D01* X103273556Y-97083411D01* X103092946Y-97008600D01* X102897454Y-97008600D01* X102716844Y-97083411D01* X102578611Y-97221644D01* X102525634Y-97349542D01* X102460503Y-97192302D01* X102307698Y-97039497D01* X102108049Y-96956800D01* X101891951Y-96956800D01* X101692302Y-97039497D01* X101539497Y-97192302D01* X101456800Y-97391951D01* X96092912Y-97391951D01* X96008049Y-97356800D01* X95791951Y-97356800D01* X95592302Y-97439497D01* X95439497Y-97592302D01* X95356800Y-97791951D01* X93260152Y-97791951D01* X93168201Y-97700000D01* X93260503Y-97607698D01* X93343200Y-97408049D01* X93343200Y-97191951D01* X93260503Y-96992302D01* X93107698Y-96839497D01* X92908049Y-96756800D01* X92691951Y-96756800D01* X92492302Y-96839497D01* X92339497Y-96992302D01* X92256800Y-97191951D01* X79279648Y-97191951D01* X79279648Y-97176702D01* X79197103Y-96977421D01* X79044579Y-96824897D01* X78845298Y-96742352D01* X78629598Y-96742352D01* X78430317Y-96824897D01* X78277793Y-96977421D01* X78195248Y-97176702D01* X78195248Y-97245248D01* X78126702Y-97245248D01* X77927421Y-97327793D01* X77774897Y-97480317D01* X77692352Y-97679598D01* X66363200Y-97679598D01* X66363200Y-95502254D01* X96208600Y-95502254D01* X96208600Y-95697746D01* X96283411Y-95878356D01* X96421644Y-96016589D01* X96602254Y-96091400D01* X96797746Y-96091400D01* X96978356Y-96016589D01* X97002795Y-95992150D01* X98757800Y-95992150D01* X98757800Y-96207850D01* X98840345Y-96407131D01* X98992869Y-96559655D01* X99192150Y-96642200D01* X99407850Y-96642200D01* X99607131Y-96559655D01* X99759655Y-96407131D01* X99842200Y-96207850D01* X99842200Y-95992150D01* X99759655Y-95792869D01* X99607131Y-95640345D01* X99407850Y-95557800D01* X99192150Y-95557800D01* X98992869Y-95640345D01* X98840345Y-95792869D01* X98757800Y-95992150D01* X97002795Y-95992150D01* X97116589Y-95878356D01* X97191400Y-95697746D01* X97191400Y-95502254D01* X97116589Y-95321644D01* X96978356Y-95183411D01* X96797746Y-95108600D01* X96602254Y-95108600D01* X96421644Y-95183411D01* X96283411Y-95321644D01* X96208600Y-95502254D01* X66363200Y-95502254D01* X66363200Y-94392142D01* X98757800Y-94392142D01* X98757800Y-94607842D01* X98840345Y-94807123D01* X98992869Y-94959647D01* X99192150Y-95042192D01* X99407850Y-95042192D01* X99607131Y-94959647D01* X99759655Y-94807123D01* X99842200Y-94607842D01* X99842200Y-94392150D01* X100357800Y-94392150D01* X100357800Y-94607850D01* X100440345Y-94807131D01* X100592869Y-94959655D01* X100792150Y-95042200D01* X101007850Y-95042200D01* X101207131Y-94959655D01* X101359655Y-94807131D01* X101442200Y-94607850D01* X101442200Y-94392150D01* X101359655Y-94192869D01* X101207131Y-94040345D01* X101007850Y-93957800D01* X100792150Y-93957800D01* X100592869Y-94040345D01* X100440345Y-94192869D01* X100357800Y-94392150D01* X99842200Y-94392150D01* X99842200Y-94392142D01* X99759655Y-94192861D01* X99607131Y-94040337D01* X99407850Y-93957792D01* X99192150Y-93957792D01* X98992869Y-94040337D01* X98840345Y-94192861D01* X98757800Y-94392142D01* X66363200Y-94392142D01* X66363200Y-85319060D01* X66756800Y-85319060D01* X66756800Y-85940940D01* X66994783Y-86515482D01* X67434518Y-86955217D01* X68009060Y-87193200D01* X68630940Y-87193200D01* X68711800Y-87159707D01* X68711800Y-93000000D01* X68733738Y-93110289D01* X68796212Y-93203788D01* X68889711Y-93266262D01* X69000000Y-93288200D01* X89500000Y-93288200D01* X89610289Y-93266262D01* X89703788Y-93203788D01* X89766262Y-93110289D01* X89788200Y-93000000D01* X89788200Y-92902254D01* X96308600Y-92902254D01* X96308600Y-93097746D01* X96383411Y-93278356D01* X96521644Y-93416589D01* X96702254Y-93491400D01* X96897746Y-93491400D01* X97078356Y-93416589D01* X97216589Y-93278356D01* X97291400Y-93097746D01* X97291400Y-92902254D01* X97287215Y-92892150D01* X99957800Y-92892150D01* X99957800Y-93107850D01* X100040345Y-93307131D01* X100192869Y-93459655D01* X100392150Y-93542200D01* X100607850Y-93542200D01* X100807131Y-93459655D01* X100864532Y-93402254D01* X106008600Y-93402254D01* X106008600Y-93597746D01* X106083411Y-93778356D01* X106221644Y-93916589D01* X106402254Y-93991400D01* X106597746Y-93991400D01* X106778356Y-93916589D01* X106916589Y-93778356D01* X106991400Y-93597746D01* X106991400Y-93402254D01* X108008600Y-93402254D01* X108008600Y-93597746D01* X108083411Y-93778356D01* X108221644Y-93916589D01* X108402254Y-93991400D01* X108597746Y-93991400D01* X108778356Y-93916589D01* X108916589Y-93778356D01* X108991400Y-93597746D01* X108991400Y-93402254D01* X111008600Y-93402254D01* X111008600Y-93597746D01* X111083411Y-93778356D01* X111221644Y-93916589D01* X111402254Y-93991400D01* X111597746Y-93991400D01* X111778356Y-93916589D01* X111916589Y-93778356D01* X111991400Y-93597746D01* X111991400Y-93402254D01* X114008600Y-93402254D01* X114008600Y-93597746D01* X114083411Y-93778356D01* X114221644Y-93916589D01* X114402254Y-93991400D01* X114597746Y-93991400D01* X114778356Y-93916589D01* X114916589Y-93778356D01* X114991400Y-93597746D01* X114991400Y-93402254D01* X118008600Y-93402254D01* X118008600Y-93597746D01* X118083411Y-93778356D01* X118221644Y-93916589D01* X118402254Y-93991400D01* X118597746Y-93991400D01* X118778356Y-93916589D01* X118916589Y-93778356D01* X118991400Y-93597746D01* X118991400Y-93402254D01* X118916589Y-93221644D01* X118778356Y-93083411D01* X118597746Y-93008600D01* X118402254Y-93008600D01* X118221644Y-93083411D01* X118083411Y-93221644D01* X118008600Y-93402254D01* X114991400Y-93402254D01* X114916589Y-93221644D01* X114778356Y-93083411D01* X114597746Y-93008600D01* X114402254Y-93008600D01* X114221644Y-93083411D01* X114083411Y-93221644D01* X114008600Y-93402254D01* X111991400Y-93402254D01* X111916589Y-93221644D01* X111778356Y-93083411D01* X111597746Y-93008600D01* X111402254Y-93008600D01* X111221644Y-93083411D01* X111083411Y-93221644D01* X111008600Y-93402254D01* X108991400Y-93402254D01* X108916589Y-93221644D01* X108778356Y-93083411D01* X108597746Y-93008600D01* X108402254Y-93008600D01* X108221644Y-93083411D01* X108083411Y-93221644D01* X108008600Y-93402254D01* X106991400Y-93402254D01* X106916589Y-93221644D01* X106778356Y-93083411D01* X106597746Y-93008600D01* X106402254Y-93008600D01* X106221644Y-93083411D01* X106083411Y-93221644D01* X106008600Y-93402254D01* X100864532Y-93402254D01* X100959655Y-93307131D01* X101042200Y-93107850D01* X101042200Y-92892150D01* X100959655Y-92692869D01* X100807131Y-92540345D01* X100607850Y-92457800D01* X100392150Y-92457800D01* X100192869Y-92540345D01* X100040345Y-92692869D01* X99957800Y-92892150D01* X97287215Y-92892150D01* X97216589Y-92721644D01* X97078356Y-92583411D01* X96897746Y-92508600D01* X96702254Y-92508600D01* X96521644Y-92583411D01* X96383411Y-92721644D01* X96308600Y-92902254D01* X89788200Y-92902254D01* X89788200Y-92402254D01* X102008600Y-92402254D01* X102008600Y-92597746D01* X102083411Y-92778356D01* X102221644Y-92916589D01* X102402254Y-92991400D01* X102597746Y-92991400D01* X102778356Y-92916589D01* X102916589Y-92778356D01* X102991400Y-92597746D01* X102991400Y-92402254D01* X103008600Y-92402254D01* X103008600Y-92597746D01* X103083411Y-92778356D01* X103221644Y-92916589D01* X103402254Y-92991400D01* X103597746Y-92991400D01* X103778356Y-92916589D01* X103916589Y-92778356D01* X103991400Y-92597746D01* X103991400Y-92402254D01* X104008600Y-92402254D01* X104008600Y-92597746D01* X104083411Y-92778356D01* X104221644Y-92916589D01* X104402254Y-92991400D01* X104597746Y-92991400D01* X104778356Y-92916589D01* X104916589Y-92778356D01* X104991400Y-92597746D01* X104991400Y-92402254D01* X107008600Y-92402254D01* X107008600Y-92597746D01* X107083411Y-92778356D01* X107221644Y-92916589D01* X107402254Y-92991400D01* X107597746Y-92991400D01* X107778356Y-92916589D01* X107916589Y-92778356D01* X107991400Y-92597746D01* X107991400Y-92402254D01* X108008600Y-92402254D01* X108008600Y-92597746D01* X108083411Y-92778356D01* X108221644Y-92916589D01* X108402254Y-92991400D01* X108597746Y-92991400D01* X108778356Y-92916589D01* X108916589Y-92778356D01* X108991400Y-92597746D01* X108991400Y-92402254D01* X108916589Y-92221644D01* X108778356Y-92083411D01* X108597746Y-92008600D01* X108402254Y-92008600D01* X108221644Y-92083411D01* X108083411Y-92221644D01* X108008600Y-92402254D01* X107991400Y-92402254D01* X107916589Y-92221644D01* X107778356Y-92083411D01* X107597746Y-92008600D01* X107402254Y-92008600D01* X107221644Y-92083411D01* X107083411Y-92221644D01* X107008600Y-92402254D01* X104991400Y-92402254D01* X104916589Y-92221644D01* X104778356Y-92083411D01* X104597746Y-92008600D01* X104402254Y-92008600D01* X104221644Y-92083411D01* X104083411Y-92221644D01* X104008600Y-92402254D01* X103991400Y-92402254D01* X103916589Y-92221644D01* X103778356Y-92083411D01* X103597746Y-92008600D01* X103402254Y-92008600D01* X103221644Y-92083411D01* X103083411Y-92221644D01* X103008600Y-92402254D01* X102991400Y-92402254D01* X102916589Y-92221644D01* X102778356Y-92083411D01* X102597746Y-92008600D01* X102402254Y-92008600D01* X102221644Y-92083411D01* X102083411Y-92221644D01* X102008600Y-92402254D01* X89788200Y-92402254D01* X89788200Y-91552254D01* X95108600Y-91552254D01* X95108600Y-91747746D01* X95183411Y-91928356D01* X95321644Y-92066589D01* X95502254Y-92141400D01* X95697746Y-92141400D01* X95878356Y-92066589D01* X96016589Y-91928356D01* X96091400Y-91747746D01* X96091400Y-91552254D01* X96025083Y-91392150D01* X98457800Y-91392150D01* X98457800Y-91607850D01* X98540345Y-91807131D01* X98692869Y-91959655D01* X98892150Y-92042200D01* X99107850Y-92042200D01* X99307131Y-91959655D01* X99459655Y-91807131D01* X99542200Y-91607850D01* X99542200Y-91392150D01* X99957800Y-91392150D01* X99957800Y-91607850D01* X100040345Y-91807131D01* X100192869Y-91959655D01* X100392150Y-92042200D01* X100607850Y-92042200D01* X100807131Y-91959655D01* X100959655Y-91807131D01* X101042200Y-91607850D01* X101042200Y-91402254D01* X103008600Y-91402254D01* X103008600Y-91597746D01* X103083411Y-91778356D01* X103221644Y-91916589D01* X103402254Y-91991400D01* X103597746Y-91991400D01* X103778356Y-91916589D01* X103916589Y-91778356D01* X103991400Y-91597746D01* X103991400Y-91402254D01* X104008600Y-91402254D01* X104008600Y-91597746D01* X104083411Y-91778356D01* X104221644Y-91916589D01* X104402254Y-91991400D01* X104597746Y-91991400D01* X104778356Y-91916589D01* X104916589Y-91778356D01* X104991400Y-91597746D01* X104991400Y-91402254D01* X105008600Y-91402254D01* X105008600Y-91597746D01* X105083411Y-91778356D01* X105221644Y-91916589D01* X105402254Y-91991400D01* X105597746Y-91991400D01* X105778356Y-91916589D01* X105916589Y-91778356D01* X105991400Y-91597746D01* X105991400Y-91402254D01* X108008600Y-91402254D01* X108008600Y-91597746D01* X108083411Y-91778356D01* X108221644Y-91916589D01* X108402254Y-91991400D01* X108597746Y-91991400D01* X108778356Y-91916589D01* X108916589Y-91778356D01* X108991400Y-91597746D01* X108991400Y-91402254D01* X108916589Y-91221644D01* X108778356Y-91083411D01* X108597746Y-91008600D01* X108402254Y-91008600D01* X108221644Y-91083411D01* X108083411Y-91221644D01* X108008600Y-91402254D01* X105991400Y-91402254D01* X105916589Y-91221644D01* X105778356Y-91083411D01* X105597746Y-91008600D01* X105402254Y-91008600D01* X105221644Y-91083411D01* X105083411Y-91221644D01* X105008600Y-91402254D01* X104991400Y-91402254D01* X104916589Y-91221644D01* X104778356Y-91083411D01* X104597746Y-91008600D01* X104402254Y-91008600D01* X104221644Y-91083411D01* X104083411Y-91221644D01* X104008600Y-91402254D01* X103991400Y-91402254D01* X103916589Y-91221644D01* X103778356Y-91083411D01* X103597746Y-91008600D01* X103402254Y-91008600D01* X103221644Y-91083411D01* X103083411Y-91221644D01* X103008600Y-91402254D01* X101042200Y-91402254D01* X101042200Y-91392150D01* X100959655Y-91192869D01* X100807131Y-91040345D01* X100607850Y-90957800D01* X100392150Y-90957800D01* X100192869Y-91040345D01* X100040345Y-91192869D01* X99957800Y-91392150D01* X99542200Y-91392150D01* X99459655Y-91192869D01* X99307131Y-91040345D01* X99107850Y-90957800D01* X98892150Y-90957800D01* X98692869Y-91040345D01* X98540345Y-91192869D01* X98457800Y-91392150D01* X96025083Y-91392150D01* X96016589Y-91371644D01* X95878356Y-91233411D01* X95697746Y-91158600D01* X95502254Y-91158600D01* X95321644Y-91233411D01* X95183411Y-91371644D01* X95108600Y-91552254D01* X89788200Y-91552254D01* X89788200Y-89892150D01* X99657806Y-89892150D01* X99657806Y-90107850D01* X99740351Y-90307131D01* X99892875Y-90459655D01* X100092156Y-90542200D01* X100307856Y-90542200D01* X100507137Y-90459655D01* X100564538Y-90402254D01* X102008600Y-90402254D01* X102008600Y-90597746D01* X102083411Y-90778356D01* X102221644Y-90916589D01* X102402254Y-90991400D01* X102597746Y-90991400D01* X102778356Y-90916589D01* X102916589Y-90778356D01* X102991400Y-90597746D01* X102991400Y-90402254D01* X103008600Y-90402254D01* X103008600Y-90597746D01* X103083411Y-90778356D01* X103221644Y-90916589D01* X103402254Y-90991400D01* X103597746Y-90991400D01* X103778356Y-90916589D01* X103916589Y-90778356D01* X103991400Y-90597746D01* X103991400Y-90402254D01* X104008600Y-90402254D01* X104008600Y-90597746D01* X104083411Y-90778356D01* X104221644Y-90916589D01* X104402254Y-90991400D01* X104597746Y-90991400D01* X104778356Y-90916589D01* X104916589Y-90778356D01* X104991400Y-90597746D01* X104991400Y-90402254D01* X105008600Y-90402254D01* X105008600Y-90597746D01* X105083411Y-90778356D01* X105221644Y-90916589D01* X105402254Y-90991400D01* X105597746Y-90991400D01* X105778356Y-90916589D01* X105916589Y-90778356D01* X105991400Y-90597746D01* X105991400Y-90402254D01* X106008600Y-90402254D01* X106008600Y-90597746D01* X106083411Y-90778356D01* X106221644Y-90916589D01* X106402254Y-90991400D01* X106597746Y-90991400D01* X106778356Y-90916589D01* X106916589Y-90778356D01* X106991400Y-90597746D01* X106991400Y-90402254D01* X106916589Y-90221644D01* X106778356Y-90083411D01* X106597746Y-90008600D01* X106402254Y-90008600D01* X106221644Y-90083411D01* X106083411Y-90221644D01* X106008600Y-90402254D01* X105991400Y-90402254D01* X105916589Y-90221644D01* X105778356Y-90083411D01* X105597746Y-90008600D01* X105402254Y-90008600D01* X105221644Y-90083411D01* X105083411Y-90221644D01* X105008600Y-90402254D01* X104991400Y-90402254D01* X104916589Y-90221644D01* X104778356Y-90083411D01* X104597746Y-90008600D01* X104402254Y-90008600D01* X104221644Y-90083411D01* X104083411Y-90221644D01* X104008600Y-90402254D01* X103991400Y-90402254D01* X103916589Y-90221644D01* X103778356Y-90083411D01* X103597746Y-90008600D01* X103402254Y-90008600D01* X103221644Y-90083411D01* X103083411Y-90221644D01* X103008600Y-90402254D01* X102991400Y-90402254D01* X102916589Y-90221644D01* X102778356Y-90083411D01* X102597746Y-90008600D01* X102402254Y-90008600D01* X102221644Y-90083411D01* X102083411Y-90221644D01* X102008600Y-90402254D01* X100564538Y-90402254D01* X100659661Y-90307131D01* X100742206Y-90107850D01* X100742206Y-89892150D01* X100659661Y-89692869D01* X100507137Y-89540345D01* X100307856Y-89457800D01* X100092156Y-89457800D01* X99892875Y-89540345D01* X99740351Y-89692869D01* X99657806Y-89892150D01* X89788200Y-89892150D01* X89788200Y-89402254D01* X103008600Y-89402254D01* X103008600Y-89597746D01* X103083411Y-89778356D01* X103221644Y-89916589D01* X103402254Y-89991400D01* X103597746Y-89991400D01* X103778356Y-89916589D01* X103916589Y-89778356D01* X103991400Y-89597746D01* X103991400Y-89402254D01* X104008600Y-89402254D01* X104008600Y-89597746D01* X104083411Y-89778356D01* X104221644Y-89916589D01* X104402254Y-89991400D01* X104597746Y-89991400D01* X104778356Y-89916589D01* X104916589Y-89778356D01* X104991400Y-89597746D01* X104991400Y-89402254D01* X105008600Y-89402254D01* X105008600Y-89597746D01* X105083411Y-89778356D01* X105221644Y-89916589D01* X105402254Y-89991400D01* X105597746Y-89991400D01* X105778356Y-89916589D01* X105916589Y-89778356D01* X105991400Y-89597746D01* X105991400Y-89402254D01* X106008600Y-89402254D01* X106008600Y-89597746D01* X106083411Y-89778356D01* X106221644Y-89916589D01* X106402254Y-89991400D01* X106597746Y-89991400D01* X106778356Y-89916589D01* X106916589Y-89778356D01* X106991400Y-89597746D01* X106991400Y-89402254D01* X107008600Y-89402254D01* X107008600Y-89597746D01* X107083411Y-89778356D01* X107221644Y-89916589D01* X107402254Y-89991400D01* X107597746Y-89991400D01* X107778356Y-89916589D01* X107916589Y-89778356D01* X107991400Y-89597746D01* X107991400Y-89402254D01* X107916589Y-89221644D01* X107778356Y-89083411D01* X107597746Y-89008600D01* X107402254Y-89008600D01* X107221644Y-89083411D01* X107083411Y-89221644D01* X107008600Y-89402254D01* X106991400Y-89402254D01* X106916589Y-89221644D01* X106778356Y-89083411D01* X106597746Y-89008600D01* X106402254Y-89008600D01* X106221644Y-89083411D01* X106083411Y-89221644D01* X106008600Y-89402254D01* X105991400Y-89402254D01* X105916589Y-89221644D01* X105778356Y-89083411D01* X105597746Y-89008600D01* X105402254Y-89008600D01* X105221644Y-89083411D01* X105083411Y-89221644D01* X105008600Y-89402254D01* X104991400Y-89402254D01* X104916589Y-89221644D01* X104778356Y-89083411D01* X104597746Y-89008600D01* X104402254Y-89008600D01* X104221644Y-89083411D01* X104083411Y-89221644D01* X104008600Y-89402254D01* X103991400Y-89402254D01* X103916589Y-89221644D01* X103778356Y-89083411D01* X103597746Y-89008600D01* X103402254Y-89008600D01* X103221644Y-89083411D01* X103083411Y-89221644D01* X103008600Y-89402254D01* X89788200Y-89402254D01* X89788200Y-88402254D01* X102008600Y-88402254D01* X102008600Y-88597746D01* X102083411Y-88778356D01* X102221644Y-88916589D01* X102402254Y-88991400D01* X102597746Y-88991400D01* X102778356Y-88916589D01* X102916589Y-88778356D01* X102991400Y-88597746D01* X102991400Y-88402254D01* X103008600Y-88402254D01* X103008600Y-88597746D01* X103083411Y-88778356D01* X103221644Y-88916589D01* X103402254Y-88991400D01* X103597746Y-88991400D01* X103778356Y-88916589D01* X103916589Y-88778356D01* X103991400Y-88597746D01* X103991400Y-88402254D01* X104008600Y-88402254D01* X104008600Y-88597746D01* X104083411Y-88778356D01* X104221644Y-88916589D01* X104402254Y-88991400D01* X104597746Y-88991400D01* X104778356Y-88916589D01* X104916589Y-88778356D01* X104991400Y-88597746D01* X104991400Y-88402254D01* X105008600Y-88402254D01* X105008600Y-88597746D01* X105083411Y-88778356D01* X105221644Y-88916589D01* X105402254Y-88991400D01* X105597746Y-88991400D01* X105778356Y-88916589D01* X105916589Y-88778356D01* X105991400Y-88597746D01* X105991400Y-88402254D01* X106008600Y-88402254D01* X106008600Y-88597746D01* X106083411Y-88778356D01* X106221644Y-88916589D01* X106402254Y-88991400D01* X106597746Y-88991400D01* X106778356Y-88916589D01* X106916589Y-88778356D01* X106991400Y-88597746D01* X106991400Y-88402254D01* X107008600Y-88402254D01* X107008600Y-88597746D01* X107083411Y-88778356D01* X107221644Y-88916589D01* X107402254Y-88991400D01* X107597746Y-88991400D01* X107778356Y-88916589D01* X107916589Y-88778356D01* X107991400Y-88597746D01* X107991400Y-88402254D01* X107916589Y-88221644D01* X107778356Y-88083411D01* X107597746Y-88008600D01* X107402254Y-88008600D01* X107221644Y-88083411D01* X107083411Y-88221644D01* X107008600Y-88402254D01* X106991400Y-88402254D01* X106916589Y-88221644D01* X106778356Y-88083411D01* X106597746Y-88008600D01* X106402254Y-88008600D01* X106221644Y-88083411D01* X106083411Y-88221644D01* X106008600Y-88402254D01* X105991400Y-88402254D01* X105916589Y-88221644D01* X105778356Y-88083411D01* X105597746Y-88008600D01* X105402254Y-88008600D01* X105221644Y-88083411D01* X105083411Y-88221644D01* X105008600Y-88402254D01* X104991400Y-88402254D01* X104916589Y-88221644D01* X104778356Y-88083411D01* X104597746Y-88008600D01* X104402254Y-88008600D01* X104221644Y-88083411D01* X104083411Y-88221644D01* X104008600Y-88402254D01* X103991400Y-88402254D01* X103916589Y-88221644D01* X103778356Y-88083411D01* X103597746Y-88008600D01* X103402254Y-88008600D01* X103221644Y-88083411D01* X103083411Y-88221644D01* X103008600Y-88402254D01* X102991400Y-88402254D01* X102916589Y-88221644D01* X102778356Y-88083411D01* X102597746Y-88008600D01* X102402254Y-88008600D01* X102221644Y-88083411D01* X102083411Y-88221644D01* X102008600Y-88402254D01* X89788200Y-88402254D01* X89788200Y-87040702D01* X90806352Y-87040702D01* X90806352Y-87256402D01* X90888897Y-87455683D01* X91041421Y-87608207D01* X91240702Y-87690752D01* X91309248Y-87690752D01* X91309248Y-87759298D01* X91391793Y-87958579D01* X91544317Y-88111103D01* X91743598Y-88193648D01* X91959298Y-88193648D01* X92158579Y-88111103D01* X92311103Y-87958579D01* X92393648Y-87759298D01* X92393648Y-87543598D01* X92335102Y-87402254D01* X102008600Y-87402254D01* X102008600Y-87597746D01* X102083411Y-87778356D01* X102221644Y-87916589D01* X102402254Y-87991400D01* X102597746Y-87991400D01* X102778356Y-87916589D01* X102916589Y-87778356D01* X102991400Y-87597746D01* X102991400Y-87402254D01* X103008600Y-87402254D01* X103008600Y-87597746D01* X103083411Y-87778356D01* X103221644Y-87916589D01* X103402254Y-87991400D01* X103597746Y-87991400D01* X103778356Y-87916589D01* X103916589Y-87778356D01* X103991400Y-87597746D01* X103991400Y-87402254D01* X105008600Y-87402254D01* X105008600Y-87597746D01* X105083411Y-87778356D01* X105221644Y-87916589D01* X105402254Y-87991400D01* X105597746Y-87991400D01* X105778356Y-87916589D01* X105916589Y-87778356D01* X105991400Y-87597746D01* X105991400Y-87402254D01* X105916589Y-87221644D01* X105778356Y-87083411D01* X105597746Y-87008600D01* X105402254Y-87008600D01* X105221644Y-87083411D01* X105083411Y-87221644D01* X105008600Y-87402254D01* X103991400Y-87402254D01* X103916589Y-87221644D01* X103778356Y-87083411D01* X103597746Y-87008600D01* X103402254Y-87008600D01* X103221644Y-87083411D01* X103083411Y-87221644D01* X103008600Y-87402254D01* X102991400Y-87402254D01* X102916589Y-87221644D01* X102778356Y-87083411D01* X102597746Y-87008600D01* X102402254Y-87008600D01* X102221644Y-87083411D01* X102083411Y-87221644D01* X102008600Y-87402254D01* X92335102Y-87402254D01* X92311103Y-87344317D01* X92158579Y-87191793D01* X91959298Y-87109248D01* X91890752Y-87109248D01* X91890752Y-87040702D01* X91808207Y-86841421D01* X91655683Y-86688897D01* X91456402Y-86606352D01* X91240702Y-86606352D01* X91041421Y-86688897D01* X90888897Y-86841421D01* X90806352Y-87040702D01* X89788200Y-87040702D01* X89788200Y-86402254D01* X102008600Y-86402254D01* X102008600Y-86597746D01* X102083411Y-86778356D01* X102221644Y-86916589D01* X102402254Y-86991400D01* X102597746Y-86991400D01* X102778356Y-86916589D01* X102916589Y-86778356D01* X102991400Y-86597746D01* X102991400Y-86402254D01* X103008600Y-86402254D01* X103008600Y-86597746D01* X103083411Y-86778356D01* X103221644Y-86916589D01* X103402254Y-86991400D01* X103597746Y-86991400D01* X103778356Y-86916589D01* X103916589Y-86778356D01* X103991400Y-86597746D01* X103991400Y-86402254D01* X104008600Y-86402254D01* X104008600Y-86597746D01* X104083411Y-86778356D01* X104221644Y-86916589D01* X104402254Y-86991400D01* X104597746Y-86991400D01* X104778356Y-86916589D01* X104916589Y-86778356D01* X104991400Y-86597746D01* X104991400Y-86402254D01* X105008600Y-86402254D01* X105008600Y-86597746D01* X105083411Y-86778356D01* X105221644Y-86916589D01* X105402254Y-86991400D01* X105597746Y-86991400D01* X105778356Y-86916589D01* X105916589Y-86778356D01* X105991400Y-86597746D01* X105991400Y-86402254D01* X108008600Y-86402254D01* X108008600Y-86597746D01* X108083411Y-86778356D01* X108221644Y-86916589D01* X108402254Y-86991400D01* X108597746Y-86991400D01* X108778356Y-86916589D01* X108916589Y-86778356D01* X108991400Y-86597746D01* X108991400Y-86402254D01* X108916589Y-86221644D01* X108778356Y-86083411D01* X108597746Y-86008600D01* X108402254Y-86008600D01* X108221644Y-86083411D01* X108083411Y-86221644D01* X108008600Y-86402254D01* X105991400Y-86402254D01* X105916589Y-86221644D01* X105778356Y-86083411D01* X105597746Y-86008600D01* X105402254Y-86008600D01* X105221644Y-86083411D01* X105083411Y-86221644D01* X105008600Y-86402254D01* X104991400Y-86402254D01* X104916589Y-86221644D01* X104778356Y-86083411D01* X104597746Y-86008600D01* X104402254Y-86008600D01* X104221644Y-86083411D01* X104083411Y-86221644D01* X104008600Y-86402254D01* X103991400Y-86402254D01* X103916589Y-86221644D01* X103778356Y-86083411D01* X103597746Y-86008600D01* X103402254Y-86008600D01* X103221644Y-86083411D01* X103083411Y-86221644D01* X103008600Y-86402254D01* X102991400Y-86402254D01* X102916589Y-86221644D01* X102778356Y-86083411D01* X102597746Y-86008600D01* X102402254Y-86008600D01* X102221644Y-86083411D01* X102083411Y-86221644D01* X102008600Y-86402254D01* X89788200Y-86402254D01* X89788200Y-86170290D01* X89883200Y-85940940D01* X89883200Y-85402254D01* X103008600Y-85402254D01* X103008600Y-85597746D01* X103083411Y-85778356D01* X103221644Y-85916589D01* X103402254Y-85991400D01* X103597746Y-85991400D01* X103778356Y-85916589D01* X103916589Y-85778356D01* X103991400Y-85597746D01* X103991400Y-85402254D01* X106008600Y-85402254D01* X106008600Y-85597746D01* X106083411Y-85778356D01* X106221644Y-85916589D01* X106402254Y-85991400D01* X106597746Y-85991400D01* X106778356Y-85916589D01* X106916589Y-85778356D01* X106991400Y-85597746D01* X106991400Y-85402254D01* X106916589Y-85221644D01* X106778356Y-85083411D01* X106597746Y-85008600D01* X106402254Y-85008600D01* X106221644Y-85083411D01* X106083411Y-85221644D01* X106008600Y-85402254D01* X103991400Y-85402254D01* X103916589Y-85221644D01* X103778356Y-85083411D01* X103597746Y-85008600D01* X103402254Y-85008600D01* X103221644Y-85083411D01* X103083411Y-85221644D01* X103008600Y-85402254D01* X89883200Y-85402254D01* X89883200Y-85319060D01* X89788200Y-85089710D01* X89788200Y-84402254D01* X103008600Y-84402254D01* X103008600Y-84597746D01* X103083411Y-84778356D01* X103221644Y-84916589D01* X103402254Y-84991400D01* X103597746Y-84991400D01* X103778356Y-84916589D01* X103916589Y-84778356D01* X103991400Y-84597746D01* X103991400Y-84402254D01* X104008600Y-84402254D01* X104008600Y-84597746D01* X104083411Y-84778356D01* X104221644Y-84916589D01* X104402254Y-84991400D01* X104597746Y-84991400D01* X104778356Y-84916589D01* X104916589Y-84778356D01* X104991400Y-84597746D01* X104991400Y-84402254D01* X104916589Y-84221644D01* X104778356Y-84083411D01* X104597746Y-84008600D01* X104402254Y-84008600D01* X104221644Y-84083411D01* X104083411Y-84221644D01* X104008600Y-84402254D01* X103991400Y-84402254D01* X103916589Y-84221644D01* X103778356Y-84083411D01* X103597746Y-84008600D01* X103402254Y-84008600D01* X103221644Y-84083411D01* X103083411Y-84221644D01* X103008600Y-84402254D01* X89788200Y-84402254D01* X89788200Y-83402254D01* X103008600Y-83402254D01* X103008600Y-83597746D01* X103083411Y-83778356D01* X103221644Y-83916589D01* X103402254Y-83991400D01* X103597746Y-83991400D01* X103778356Y-83916589D01* X103916589Y-83778356D01* X103991400Y-83597746D01* X103991400Y-83402254D01* X108008600Y-83402254D01* X108008600Y-83597746D01* X108083411Y-83778356D01* X108221644Y-83916589D01* X108402254Y-83991400D01* X108597746Y-83991400D01* X108778356Y-83916589D01* X108916589Y-83778356D01* X108991400Y-83597746D01* X108991400Y-83402254D01* X108916589Y-83221644D01* X108778356Y-83083411D01* X108597746Y-83008600D01* X108402254Y-83008600D01* X108221644Y-83083411D01* X108083411Y-83221644D01* X108008600Y-83402254D01* X103991400Y-83402254D01* X103916589Y-83221644D01* X103778356Y-83083411D01* X103597746Y-83008600D01* X103402254Y-83008600D01* X103221644Y-83083411D01* X103083411Y-83221644D01* X103008600Y-83402254D01* X89788200Y-83402254D01* X89788200Y-81591951D01* X93056800Y-81591951D01* X93056800Y-81808049D01* X93139497Y-82007698D01* X93292302Y-82160503D01* X93491951Y-82243200D01* X93708049Y-82243200D01* X93907698Y-82160503D01* X94060503Y-82007698D01* X94089910Y-81936702D01* X98266352Y-81936702D01* X98266352Y-82152402D01* X98348897Y-82351683D01* X98501421Y-82504207D01* X98700702Y-82586752D01* X98769248Y-82586752D01* X98769248Y-82655298D01* X98851793Y-82854579D01* X99004317Y-83007103D01* X99203598Y-83089648D01* X99419298Y-83089648D01* X99618579Y-83007103D01* X99771103Y-82854579D01* X99853648Y-82655298D01* X99853648Y-82439598D01* X99838180Y-82402254D01* X101008600Y-82402254D01* X101008600Y-82597746D01* X101083411Y-82778356D01* X101221644Y-82916589D01* X101402254Y-82991400D01* X101597746Y-82991400D01* X101778356Y-82916589D01* X101916589Y-82778356D01* X101991400Y-82597746D01* X101991400Y-82402254D01* X103008600Y-82402254D01* X103008600Y-82597746D01* X103083411Y-82778356D01* X103221644Y-82916589D01* X103402254Y-82991400D01* X103597746Y-82991400D01* X103778356Y-82916589D01* X103916589Y-82778356D01* X103991400Y-82597746D01* X103991400Y-82402254D01* X106008600Y-82402254D01* X106008600Y-82597746D01* X106083411Y-82778356D01* X106221644Y-82916589D01* X106402254Y-82991400D01* X106597746Y-82991400D01* X106778356Y-82916589D01* X106916589Y-82778356D01* X106991400Y-82597746D01* X106991400Y-82402254D01* X106916589Y-82221644D01* X106778356Y-82083411D01* X106597746Y-82008600D01* X106402254Y-82008600D01* X106221644Y-82083411D01* X106083411Y-82221644D01* X106008600Y-82402254D01* X103991400Y-82402254D01* X103916589Y-82221644D01* X103778356Y-82083411D01* X103597746Y-82008600D01* X103402254Y-82008600D01* X103221644Y-82083411D01* X103083411Y-82221644D01* X103008600Y-82402254D01* X101991400Y-82402254D01* X101916589Y-82221644D01* X101778356Y-82083411D01* X101597746Y-82008600D01* X101402254Y-82008600D01* X101221644Y-82083411D01* X101083411Y-82221644D01* X101008600Y-82402254D01* X99838180Y-82402254D01* X99771103Y-82240317D01* X99618579Y-82087793D01* X99419298Y-82005248D01* X99350752Y-82005248D01* X99350752Y-81936702D01* X99268207Y-81737421D01* X99115683Y-81584897D01* X98916402Y-81502352D01* X98700702Y-81502352D01* X98501421Y-81584897D01* X98348897Y-81737421D01* X98266352Y-81936702D01* X94089910Y-81936702D01* X94143200Y-81808049D01* X94143200Y-81591951D01* X94064626Y-81402254D01* X103008600Y-81402254D01* X103008600Y-81597746D01* X103083411Y-81778356D01* X103221644Y-81916589D01* X103402254Y-81991400D01* X103597746Y-81991400D01* X103778356Y-81916589D01* X103916589Y-81778356D01* X103991400Y-81597746D01* X103991400Y-81402254D01* X105008600Y-81402254D01* X105008600Y-81597746D01* X105083411Y-81778356D01* X105221644Y-81916589D01* X105402254Y-81991400D01* X105597746Y-81991400D01* X105778356Y-81916589D01* X105916589Y-81778356D01* X105991400Y-81597746D01* X105991400Y-81402254D01* X108008600Y-81402254D01* X108008600Y-81597746D01* X108083411Y-81778356D01* X108221644Y-81916589D01* X108402254Y-81991400D01* X108597746Y-81991400D01* X108778356Y-81916589D01* X108916589Y-81778356D01* X108991400Y-81597746D01* X108991400Y-81402254D01* X108916589Y-81221644D01* X108778356Y-81083411D01* X108597746Y-81008600D01* X108402254Y-81008600D01* X108221644Y-81083411D01* X108083411Y-81221644D01* X108008600Y-81402254D01* X105991400Y-81402254D01* X105916589Y-81221644D01* X105778356Y-81083411D01* X105597746Y-81008600D01* X105402254Y-81008600D01* X105221644Y-81083411D01* X105083411Y-81221644D01* X105008600Y-81402254D01* X103991400Y-81402254D01* X103916589Y-81221644D01* X103778356Y-81083411D01* X103597746Y-81008600D01* X103402254Y-81008600D01* X103221644Y-81083411D01* X103083411Y-81221644D01* X103008600Y-81402254D01* X94064626Y-81402254D01* X94060503Y-81392302D01* X93907698Y-81239497D01* X93708049Y-81156800D01* X93491951Y-81156800D01* X93292302Y-81239497D01* X93139497Y-81392302D01* X93056800Y-81591951D01* X89788200Y-81591951D01* X89788200Y-81340564D01* X89792150Y-81342200D01* X90007850Y-81342200D01* X90207131Y-81259655D01* X90359655Y-81107131D01* X90442200Y-80907850D01* X90442200Y-80692150D01* X90359655Y-80492869D01* X90207131Y-80340345D01* X90007850Y-80257800D01* X89792150Y-80257800D01* X89788200Y-80259436D01* X89788200Y-80091951D01* X93656800Y-80091951D01* X93656800Y-80308049D01* X93739497Y-80507698D01* X93892302Y-80660503D01* X94091951Y-80743200D01* X94308049Y-80743200D01* X94507698Y-80660503D01* X94660503Y-80507698D01* X94704179Y-80402254D01* X104008600Y-80402254D01* X104008600Y-80597746D01* X104083411Y-80778356D01* X104221644Y-80916589D01* X104402254Y-80991400D01* X104597746Y-80991400D01* X104778356Y-80916589D01* X104916589Y-80778356D01* X104991400Y-80597746D01* X104991400Y-80402254D01* X104916589Y-80221644D01* X104778356Y-80083411D01* X104597746Y-80008600D01* X104402254Y-80008600D01* X104221644Y-80083411D01* X104083411Y-80221644D01* X104008600Y-80402254D01* X94704179Y-80402254D01* X94743200Y-80308049D01* X94743200Y-80091951D01* X94660503Y-79892302D01* X94507698Y-79739497D01* X94308049Y-79656800D01* X94091951Y-79656800D01* X93892302Y-79739497D01* X93739497Y-79892302D01* X93656800Y-80091951D01* X89788200Y-80091951D01* X89788200Y-79740564D01* X89792150Y-79742200D01* X90007850Y-79742200D01* X90207131Y-79659655D01* X90359655Y-79507131D01* X90442200Y-79307850D01* X90442200Y-79092150D01* X90442118Y-79091951D01* X93056800Y-79091951D01* X93056800Y-79308049D01* X93139497Y-79507698D01* X93292302Y-79660503D01* X93491951Y-79743200D01* X93708049Y-79743200D01* X93907698Y-79660503D01* X94060503Y-79507698D01* X94104179Y-79402254D01* X104008600Y-79402254D01* X104008600Y-79597746D01* X104083411Y-79778356D01* X104221644Y-79916589D01* X104402254Y-79991400D01* X104597746Y-79991400D01* X104778356Y-79916589D01* X104916589Y-79778356D01* X104991400Y-79597746D01* X104991400Y-79402254D01* X105008600Y-79402254D01* X105008600Y-79597746D01* X105083411Y-79778356D01* X105221644Y-79916589D01* X105402254Y-79991400D01* X105597746Y-79991400D01* X105778356Y-79916589D01* X105916589Y-79778356D01* X105991400Y-79597746D01* X105991400Y-79402254D01* X107008600Y-79402254D01* X107008600Y-79597746D01* X107083411Y-79778356D01* X107221644Y-79916589D01* X107402254Y-79991400D01* X107597746Y-79991400D01* X107778356Y-79916589D01* X107916589Y-79778356D01* X107991400Y-79597746D01* X107991400Y-79402254D01* X107916589Y-79221644D01* X107778356Y-79083411D01* X107597746Y-79008600D01* X107402254Y-79008600D01* X107221644Y-79083411D01* X107083411Y-79221644D01* X107008600Y-79402254D01* X105991400Y-79402254D01* X105916589Y-79221644D01* X105778356Y-79083411D01* X105597746Y-79008600D01* X105402254Y-79008600D01* X105221644Y-79083411D01* X105083411Y-79221644D01* X105008600Y-79402254D01* X104991400Y-79402254D01* X104916589Y-79221644D01* X104778356Y-79083411D01* X104597746Y-79008600D01* X104402254Y-79008600D01* X104221644Y-79083411D01* X104083411Y-79221644D01* X104008600Y-79402254D01* X94104179Y-79402254D01* X94143200Y-79308049D01* X94143200Y-79091951D01* X94060503Y-78892302D01* X93907698Y-78739497D01* X93708049Y-78656800D01* X93491951Y-78656800D01* X93292302Y-78739497D01* X93139497Y-78892302D01* X93056800Y-79091951D01* X90442118Y-79091951D01* X90359655Y-78892869D01* X90207131Y-78740345D01* X90007850Y-78657800D01* X89792150Y-78657800D01* X89788200Y-78659436D01* X89788200Y-78500000D01* X89768757Y-78402254D01* X108008600Y-78402254D01* X108008600Y-78597746D01* X108083411Y-78778356D01* X108221644Y-78916589D01* X108402254Y-78991400D01* X108597746Y-78991400D01* X108778356Y-78916589D01* X108916589Y-78778356D01* X108991400Y-78597746D01* X108991400Y-78402254D01* X108916589Y-78221644D01* X108778356Y-78083411D01* X108597746Y-78008600D01* X108402254Y-78008600D01* X108221644Y-78083411D01* X108083411Y-78221644D01* X108008600Y-78402254D01* X89768757Y-78402254D01* X89766262Y-78389711D01* X89703788Y-78296212D01* X89610289Y-78233738D01* X89500000Y-78211800D01* X80583856Y-78211800D01* X80707698Y-78160503D01* X80860503Y-78007698D01* X80943200Y-77808049D01* X80943200Y-77692150D01* X99457800Y-77692150D01* X99457800Y-77907850D01* X99540345Y-78107131D01* X99692869Y-78259655D01* X99892150Y-78342200D01* X100107850Y-78342200D01* X100307131Y-78259655D01* X100459655Y-78107131D01* X100542200Y-77907850D01* X100542200Y-77692150D01* X100459655Y-77492869D01* X100369040Y-77402254D01* X102008600Y-77402254D01* X102008600Y-77597746D01* X102083411Y-77778356D01* X102221644Y-77916589D01* X102402254Y-77991400D01* X102597746Y-77991400D01* X102778356Y-77916589D01* X102916589Y-77778356D01* X102991400Y-77597746D01* X102991400Y-77402254D01* X103008600Y-77402254D01* X103008600Y-77597746D01* X103083411Y-77778356D01* X103221644Y-77916589D01* X103402254Y-77991400D01* X103597746Y-77991400D01* X103778356Y-77916589D01* X103916589Y-77778356D01* X103991400Y-77597746D01* X103991400Y-77402254D01* X105008600Y-77402254D01* X105008600Y-77597746D01* X105083411Y-77778356D01* X105221644Y-77916589D01* X105402254Y-77991400D01* X105597746Y-77991400D01* X105778356Y-77916589D01* X105916589Y-77778356D01* X105991400Y-77597746D01* X105991400Y-77402254D01* X107008600Y-77402254D01* X107008600Y-77597746D01* X107083411Y-77778356D01* X107221644Y-77916589D01* X107402254Y-77991400D01* X107597746Y-77991400D01* X107778356Y-77916589D01* X107916589Y-77778356D01* X107991400Y-77597746D01* X107991400Y-77402254D01* X108008600Y-77402254D01* X108008600Y-77597746D01* X108083411Y-77778356D01* X108221644Y-77916589D01* X108402254Y-77991400D01* X108597746Y-77991400D01* X108778356Y-77916589D01* X108916589Y-77778356D01* X108991400Y-77597746D01* X108991400Y-77402254D01* X109008600Y-77402254D01* X109008600Y-77597746D01* X109083411Y-77778356D01* X109221644Y-77916589D01* X109402254Y-77991400D01* X109597746Y-77991400D01* X109711800Y-77944157D01* X109711800Y-78055843D01* X109597746Y-78008600D01* X109402254Y-78008600D01* X109221644Y-78083411D01* X109083411Y-78221644D01* X109008600Y-78402254D01* X109008600Y-78597746D01* X109083411Y-78778356D01* X109221644Y-78916589D01* X109402254Y-78991400D01* X109597746Y-78991400D01* X109711800Y-78944157D01* X109711800Y-79055843D01* X109597746Y-79008600D01* X109402254Y-79008600D01* X109221644Y-79083411D01* X109083411Y-79221644D01* X109008600Y-79402254D01* X109008600Y-79597746D01* X109083411Y-79778356D01* X109221644Y-79916589D01* X109402254Y-79991400D01* X109597746Y-79991400D01* X109711800Y-79944157D01* X109711800Y-81055843D01* X109597746Y-81008600D01* X109402254Y-81008600D01* X109221644Y-81083411D01* X109083411Y-81221644D01* X109008600Y-81402254D01* X109008600Y-81597746D01* X109083411Y-81778356D01* X109221644Y-81916589D01* X109402254Y-81991400D01* X109597746Y-81991400D01* X109711800Y-81944157D01* X109711800Y-83055843D01* X109597746Y-83008600D01* X109402254Y-83008600D01* X109221644Y-83083411D01* X109083411Y-83221644D01* X109008600Y-83402254D01* X109008600Y-83597746D01* X109083411Y-83778356D01* X109221644Y-83916589D01* X109402254Y-83991400D01* X109597746Y-83991400D01* X109711800Y-83944157D01* X109711800Y-86055843D01* X109597746Y-86008600D01* X109402254Y-86008600D01* X109221644Y-86083411D01* X109083411Y-86221644D01* X109008600Y-86402254D01* X109008600Y-86597746D01* X109083411Y-86778356D01* X109221644Y-86916589D01* X109402254Y-86991400D01* X109597746Y-86991400D01* X109711800Y-86944157D01* X109711800Y-87300000D01* X109733738Y-87410289D01* X109793681Y-87500000D01* X109733738Y-87589711D01* X109711800Y-87700000D01* X109711800Y-88055843D01* X109597746Y-88008600D01* X109402254Y-88008600D01* X109221644Y-88083411D01* X109083411Y-88221644D01* X109008600Y-88402254D01* X109008600Y-88597746D01* X109083411Y-88778356D01* X109221644Y-88916589D01* X109402254Y-88991400D01* X109597746Y-88991400D01* X109711800Y-88944157D01* X109711800Y-90055843D01* X109597746Y-90008600D01* X109402254Y-90008600D01* X109221644Y-90083411D01* X109083411Y-90221644D01* X109008600Y-90402254D01* X109008600Y-90597746D01* X109083411Y-90778356D01* X109221644Y-90916589D01* X109402254Y-90991400D01* X109597746Y-90991400D01* X109711800Y-90944157D01* X109711800Y-91055843D01* X109597746Y-91008600D01* X109402254Y-91008600D01* X109221644Y-91083411D01* X109083411Y-91221644D01* X109008600Y-91402254D01* X109008600Y-91597746D01* X109083411Y-91778356D01* X109221644Y-91916589D01* X109402254Y-91991400D01* X109597746Y-91991400D01* X109711800Y-91944157D01* X109711800Y-92055843D01* X109597746Y-92008600D01* X109402254Y-92008600D01* X109221644Y-92083411D01* X109083411Y-92221644D01* X109008600Y-92402254D01* X109008600Y-92597746D01* X109083411Y-92778356D01* X109221644Y-92916589D01* X109402254Y-92991400D01* X109597746Y-92991400D01* X109778356Y-92916589D01* X109916589Y-92778356D01* X109991400Y-92597746D01* X109991400Y-92402254D01* X109984077Y-92384574D01* X110003390Y-92388180D01* X112024278Y-92364405D01* X112008600Y-92402254D01* X112008600Y-92597746D01* X112083411Y-92778356D01* X112221644Y-92916589D01* X112402254Y-92991400D01* X112597746Y-92991400D01* X112778356Y-92916589D01* X112916589Y-92778356D01* X112991400Y-92597746D01* X112991400Y-92402254D01* X112971108Y-92353266D01* X115038968Y-92328938D01* X115008600Y-92402254D01* X115008600Y-92597746D01* X115083411Y-92778356D01* X115221644Y-92916589D01* X115402254Y-92991400D01* X115597746Y-92991400D01* X115778356Y-92916589D01* X115916589Y-92778356D01* X115991400Y-92597746D01* X115991400Y-92402254D01* X115956560Y-92318143D01* X117048762Y-92305293D01* X117008600Y-92402254D01* X117008600Y-92597746D01* X117083411Y-92778356D01* X117221644Y-92916589D01* X117402254Y-92991400D01* X117597746Y-92991400D01* X117778356Y-92916589D01* X117916589Y-92778356D01* X117991400Y-92597746D01* X117991400Y-92402254D01* X117946861Y-92294728D01* X118382032Y-92289608D01* X124296212Y-98203788D01* X124389711Y-98266262D01* X124500000Y-98288200D01* X128000000Y-98288200D01* X128110289Y-98266262D01* X128203788Y-98203788D01* X129703788Y-96703788D01* X129740808Y-96648384D01* X132796212Y-99703788D01* X132889711Y-99766262D01* X133000000Y-99788200D01* X134691082Y-99788200D01* X134740345Y-99907131D01* X134892869Y-100059655D01* X135092150Y-100142200D01* X135307850Y-100142200D01* X135507131Y-100059655D01* X135659655Y-99907131D01* X135708918Y-99788200D01* X137956800Y-99788200D01* X137956800Y-99808049D01* X138039497Y-100007698D01* X138192302Y-100160503D01* X138391951Y-100243200D01* X138608049Y-100243200D01* X138807698Y-100160503D01* X138960503Y-100007698D01* X139043200Y-99808049D01* X139043200Y-99788200D01* X142500858Y-99788200D01* X142457800Y-99892150D01* X142457800Y-100107850D01* X142540345Y-100307131D01* X142692869Y-100459655D01* X142892150Y-100542200D01* X143107850Y-100542200D01* X143307131Y-100459655D01* X143459655Y-100307131D01* X143542200Y-100107850D01* X143542200Y-99892150D01* X143499142Y-99788200D01* X148000000Y-99788200D01* X148110289Y-99766262D01* X148186709Y-99715200D01* X148531095Y-99715200D01* X148457800Y-99892150D01* X148457800Y-100107850D01* X148540345Y-100307131D01* X148692869Y-100459655D01* X148892150Y-100542200D01* X149107850Y-100542200D01* X149307131Y-100459655D01* X149459655Y-100307131D01* X149465860Y-100292150D01* X154357800Y-100292150D01* X154357800Y-100507850D01* X154440345Y-100707131D01* X154592869Y-100859655D01* X154792150Y-100942200D01* X155007850Y-100942200D01* X155207131Y-100859655D01* X155359655Y-100707131D01* X155442200Y-100507850D01* X155442200Y-100492150D01* X156457800Y-100492150D01* X156457800Y-100707850D01* X156540345Y-100907131D01* X156692869Y-101059655D01* X156892150Y-101142200D01* X157107850Y-101142200D01* X157307131Y-101059655D01* X157459655Y-100907131D01* X157465860Y-100892150D01* X160957800Y-100892150D01* X160957800Y-101107850D01* X161040345Y-101307131D01* X161192869Y-101459655D01* X161392150Y-101542200D01* X161607850Y-101542200D01* X161807131Y-101459655D01* X161874636Y-101392150D01* X168957800Y-101392150D01* X168957800Y-101607850D01* X169040345Y-101807131D01* X169192869Y-101959655D01* X169392150Y-102042200D01* X169607850Y-102042200D01* X169807131Y-101959655D01* X169959655Y-101807131D01* X170042200Y-101607850D01* X170042200Y-101392150D01* X169959655Y-101192869D01* X169807131Y-101040345D01* X169607850Y-100957800D01* X169392150Y-100957800D01* X169192869Y-101040345D01* X169040345Y-101192869D01* X168957800Y-101392150D01* X161874636Y-101392150D01* X161959655Y-101307131D01* X162042200Y-101107850D01* X162042200Y-100892150D01* X171557800Y-100892150D01* X171557800Y-101107850D01* X171640345Y-101307131D01* X171792869Y-101459655D01* X171992150Y-101542200D01* X172207850Y-101542200D01* X172407131Y-101459655D01* X172559655Y-101307131D01* X172642200Y-101107850D01* X172642200Y-100892150D01* X172559655Y-100692869D01* X172407131Y-100540345D01* X172207850Y-100457800D01* X171992150Y-100457800D01* X171792869Y-100540345D01* X171640345Y-100692869D01* X171557800Y-100892150D01* X162042200Y-100892150D01* X161959655Y-100692869D01* X161807131Y-100540345D01* X161607850Y-100457800D01* X161392150Y-100457800D01* X161192869Y-100540345D01* X161040345Y-100692869D01* X160957800Y-100892150D01* X157465860Y-100892150D01* X157542200Y-100707850D01* X157542200Y-100492150D01* X157459655Y-100292869D01* X157307131Y-100140345D01* X157107850Y-100057800D01* X156892150Y-100057800D01* X156692869Y-100140345D01* X156540345Y-100292869D01* X156457800Y-100492150D01* X155442200Y-100492150D01* X155442200Y-100292150D01* X155359655Y-100092869D01* X155207131Y-99940345D01* X155007850Y-99857800D01* X154792150Y-99857800D01* X154592869Y-99940345D01* X154440345Y-100092869D01* X154357800Y-100292150D01* X149465860Y-100292150D01* X149542200Y-100107850D01* X149542200Y-99892150D01* X149468905Y-99715200D01* X151428019Y-99715200D01* X151457800Y-99744981D01* X151457800Y-99807850D01* X151540345Y-100007131D01* X151692869Y-100159655D01* X151892150Y-100242200D01* X152107850Y-100242200D01* X152307131Y-100159655D01* X152459655Y-100007131D01* X152542200Y-99807850D01* X152542200Y-99592150D01* X152500779Y-99492150D01* X160957798Y-99492150D01* X160957798Y-99707850D01* X161040343Y-99907131D01* X161192867Y-100059655D01* X161392148Y-100142200D01* X161607848Y-100142200D01* X161807129Y-100059655D01* X161959653Y-99907131D01* X162042198Y-99707850D01* X162042198Y-99492150D01* X162657800Y-99492150D01* X162657800Y-99707850D01* X162740345Y-99907131D01* X162892869Y-100059655D01* X163092150Y-100142200D01* X163307850Y-100142200D01* X163507131Y-100059655D01* X163659655Y-99907131D01* X163742200Y-99707850D01* X163742200Y-99492150D01* X165757800Y-99492150D01* X165757800Y-99707850D01* X165840345Y-99907131D01* X165992869Y-100059655D01* X166192150Y-100142200D01* X166407850Y-100142200D01* X166607131Y-100059655D01* X166759655Y-99907131D01* X166842200Y-99707850D01* X166842200Y-99492150D01* X166857800Y-99492150D01* X166857800Y-99707850D01* X166940345Y-99907131D01* X167092869Y-100059655D01* X167292150Y-100142200D01* X167507850Y-100142200D01* X167707131Y-100059655D01* X167859655Y-99907131D01* X167942200Y-99707850D01* X167942200Y-99492150D01* X167900779Y-99392150D01* X170257800Y-99392150D01* X170257800Y-99607850D01* X170340345Y-99807131D01* X170492869Y-99959655D01* X170692150Y-100042200D01* X170907850Y-100042200D01* X171107131Y-99959655D01* X171259655Y-99807131D01* X171265860Y-99792150D01* X171557800Y-99792150D01* X171557800Y-100007850D01* X171640345Y-100207131D01* X171792869Y-100359655D01* X171992150Y-100442200D01* X172207850Y-100442200D01* X172407131Y-100359655D01* X172559655Y-100207131D01* X172642200Y-100007850D01* X172642200Y-99792150D01* X172559655Y-99592869D01* X172458936Y-99492150D01* X173157800Y-99492150D01* X173157800Y-99707850D01* X173240345Y-99907131D01* X173392869Y-100059655D01* X173592150Y-100142200D01* X173807850Y-100142200D01* X174007131Y-100059655D01* X174159655Y-99907131D01* X174242200Y-99707850D01* X174242200Y-99492150D01* X174200779Y-99392150D01* X174957800Y-99392150D01* X174957800Y-99607850D01* X175040345Y-99807131D01* X175192869Y-99959655D01* X175392150Y-100042200D01* X175607850Y-100042200D01* X175807131Y-99959655D01* X175959655Y-99807131D01* X176042200Y-99607850D01* X176042200Y-99392150D01* X175959655Y-99192869D01* X175807131Y-99040345D01* X175607850Y-98957800D01* X175392150Y-98957800D01* X175192869Y-99040345D01* X175040345Y-99192869D01* X174957800Y-99392150D01* X174200779Y-99392150D01* X174159655Y-99292869D01* X174007131Y-99140345D01* X173807850Y-99057800D01* X173592150Y-99057800D01* X173392869Y-99140345D01* X173240345Y-99292869D01* X173157800Y-99492150D01* X172458936Y-99492150D01* X172407131Y-99440345D01* X172207850Y-99357800D01* X171992150Y-99357800D01* X171792869Y-99440345D01* X171640345Y-99592869D01* X171557800Y-99792150D01* X171265860Y-99792150D01* X171342200Y-99607850D01* X171342200Y-99392150D01* X171259655Y-99192869D01* X171107131Y-99040345D01* X170907850Y-98957800D01* X170692150Y-98957800D01* X170492869Y-99040345D01* X170340345Y-99192869D01* X170257800Y-99392150D01* X167900779Y-99392150D01* X167859655Y-99292869D01* X167707131Y-99140345D01* X167507850Y-99057800D01* X167292150Y-99057800D01* X167092869Y-99140345D01* X166940345Y-99292869D01* X166857800Y-99492150D01* X166842200Y-99492150D01* X166759655Y-99292869D01* X166607131Y-99140345D01* X166407850Y-99057800D01* X166192150Y-99057800D01* X165992869Y-99140345D01* X165840345Y-99292869D01* X165757800Y-99492150D01* X163742200Y-99492150D01* X163659655Y-99292869D01* X163507131Y-99140345D01* X163307850Y-99057800D01* X163092150Y-99057800D01* X162892869Y-99140345D01* X162740345Y-99292869D01* X162657800Y-99492150D01* X162042198Y-99492150D01* X161959653Y-99292869D01* X161807129Y-99140345D01* X161607848Y-99057800D01* X161392148Y-99057800D01* X161192867Y-99140345D01* X161040343Y-99292869D01* X160957798Y-99492150D01* X152500779Y-99492150D01* X152459655Y-99392869D01* X152307131Y-99240345D01* X152107850Y-99157800D01* X152044981Y-99157800D01* X151922505Y-99035324D01* X151899342Y-99000658D01* X151762003Y-98908890D01* X151640893Y-98884800D01* X151640888Y-98884800D01* X151600000Y-98876667D01* X151559112Y-98884800D01* X149381986Y-98884800D01* X149459655Y-98807131D01* X149542200Y-98607850D01* X149542200Y-98492150D01* X157557800Y-98492150D01* X157557800Y-98707850D01* X157640345Y-98907131D01* X157792869Y-99059655D01* X157992150Y-99142200D01* X158207850Y-99142200D01* X158407131Y-99059655D01* X158559655Y-98907131D01* X158642200Y-98707850D01* X158642200Y-98492150D01* X158757800Y-98492150D01* X158757800Y-98707850D01* X158840345Y-98907131D01* X158992869Y-99059655D01* X159192150Y-99142200D01* X159407850Y-99142200D01* X159607131Y-99059655D01* X159759655Y-98907131D01* X159842200Y-98707850D01* X159842200Y-98492150D01* X159800779Y-98392150D01* X163457800Y-98392150D01* X163457800Y-98607850D01* X163540345Y-98807131D01* X163692869Y-98959655D01* X163892150Y-99042200D01* X164107850Y-99042200D01* X164307131Y-98959655D01* X164459655Y-98807131D01* X164542200Y-98607850D01* X164542200Y-98392150D01* X167657800Y-98392150D01* X167657800Y-98607850D01* X167740345Y-98807131D01* X167892869Y-98959655D01* X168092150Y-99042200D01* X168307850Y-99042200D01* X168507131Y-98959655D01* X168659655Y-98807131D01* X168742200Y-98607850D01* X168742200Y-98392150D01* X168957800Y-98392150D01* X168957800Y-98607850D01* X169040345Y-98807131D01* X169192869Y-98959655D01* X169392150Y-99042200D01* X169607850Y-99042200D01* X169807131Y-98959655D01* X169959655Y-98807131D01* X170042200Y-98607850D01* X170042200Y-98592150D01* X172257800Y-98592150D01* X172257800Y-98807850D01* X172340345Y-99007131D01* X172492869Y-99159655D01* X172692150Y-99242200D01* X172907850Y-99242200D01* X173107131Y-99159655D01* X173259655Y-99007131D01* X173342200Y-98807850D01* X173342200Y-98592150D01* X174157800Y-98592150D01* X174157800Y-98807850D01* X174240345Y-99007131D01* X174392869Y-99159655D01* X174592150Y-99242200D01* X174807850Y-99242200D01* X175007131Y-99159655D01* X175159655Y-99007131D01* X175242200Y-98807850D01* X175242200Y-98592150D01* X175159655Y-98392869D01* X175007131Y-98240345D01* X174807850Y-98157800D01* X174592150Y-98157800D01* X174392869Y-98240345D01* X174240345Y-98392869D01* X174157800Y-98592150D01* X173342200Y-98592150D01* X173259655Y-98392869D01* X173107131Y-98240345D01* X172907850Y-98157800D01* X172692150Y-98157800D01* X172492869Y-98240345D01* X172340345Y-98392869D01* X172257800Y-98592150D01* X170042200Y-98592150D01* X170042200Y-98392150D01* X169959655Y-98192869D01* X169807131Y-98040345D01* X169607850Y-97957800D01* X169392150Y-97957800D01* X169192869Y-98040345D01* X169040345Y-98192869D01* X168957800Y-98392150D01* X168742200Y-98392150D01* X168659655Y-98192869D01* X168507131Y-98040345D01* X168307850Y-97957800D01* X168092150Y-97957800D01* X167892869Y-98040345D01* X167740345Y-98192869D01* X167657800Y-98392150D01* X164542200Y-98392150D01* X164459655Y-98192869D01* X164307131Y-98040345D01* X164107850Y-97957800D01* X163892150Y-97957800D01* X163692869Y-98040345D01* X163540345Y-98192869D01* X163457800Y-98392150D01* X159800779Y-98392150D01* X159759655Y-98292869D01* X159607131Y-98140345D01* X159407850Y-98057800D01* X159192150Y-98057800D01* X158992869Y-98140345D01* X158840345Y-98292869D01* X158757800Y-98492150D01* X158642200Y-98492150D01* X158559655Y-98292869D01* X158407131Y-98140345D01* X158207850Y-98057800D01* X157992150Y-98057800D01* X157792869Y-98140345D01* X157640345Y-98292869D01* X157557800Y-98492150D01* X149542200Y-98492150D01* X149542200Y-98392150D01* X149459655Y-98192869D01* X149307131Y-98040345D01* X149107850Y-97957800D01* X148892150Y-97957800D01* X148692869Y-98040345D01* X148540345Y-98192869D01* X148457800Y-98392150D01* X148457800Y-98607850D01* X148540345Y-98807131D01* X148618014Y-98884800D01* X148288200Y-98884800D01* X148288200Y-96502254D01* X152608600Y-96502254D01* X152608600Y-96697746D01* X152683411Y-96878356D01* X152821644Y-97016589D01* X153002254Y-97091400D01* X153197746Y-97091400D01* X153378356Y-97016589D01* X153516589Y-96878356D01* X153591400Y-96697746D01* X153591400Y-96502254D01* X153545794Y-96392150D01* X165457800Y-96392150D01* X165457800Y-96607850D01* X165540345Y-96807131D01* X165692869Y-96959655D01* X165892150Y-97042200D01* X166107850Y-97042200D01* X166307131Y-96959655D01* X166459655Y-96807131D01* X166542200Y-96607850D01* X166542200Y-96392150D01* X166459655Y-96192869D01* X166307131Y-96040345D01* X166107850Y-95957800D01* X165892150Y-95957800D01* X165692869Y-96040345D01* X165540345Y-96192869D01* X165457800Y-96392150D01* X153545794Y-96392150D01* X153516589Y-96321644D01* X153378356Y-96183411D01* X153197746Y-96108600D01* X153002254Y-96108600D01* X152821644Y-96183411D01* X152683411Y-96321644D01* X152608600Y-96502254D01* X148288200Y-96502254D01* X148288200Y-94392150D01* X151357800Y-94392150D01* X151357800Y-94607850D01* X151440345Y-94807131D01* X151592869Y-94959655D01* X151792150Y-95042200D01* X152007850Y-95042200D01* X152207131Y-94959655D01* X152359655Y-94807131D01* X152442200Y-94607850D01* X152442200Y-94392150D01* X152957800Y-94392150D01* X152957800Y-94607850D01* X153040345Y-94807131D01* X153192869Y-94959655D01* X153392150Y-95042200D01* X153607850Y-95042200D01* X153807131Y-94959655D01* X153959655Y-94807131D01* X154042200Y-94607850D01* X154042200Y-94392150D01* X157957800Y-94392150D01* X157957800Y-94607850D01* X158040345Y-94807131D01* X158192869Y-94959655D01* X158392150Y-95042200D01* X158607850Y-95042200D01* X158807131Y-94959655D01* X158959655Y-94807131D01* X159042200Y-94607850D01* X159042200Y-94392150D01* X168957800Y-94392150D01* X168957800Y-94607850D01* X169040345Y-94807131D01* X169192869Y-94959655D01* X169392150Y-95042200D01* X169607850Y-95042200D01* X169807131Y-94959655D01* X169959655Y-94807131D01* X170042200Y-94607850D01* X170042200Y-94392150D01* X169959655Y-94192869D01* X169807131Y-94040345D01* X169607850Y-93957800D01* X169392150Y-93957800D01* X169192869Y-94040345D01* X169040345Y-94192869D01* X168957800Y-94392150D01* X159042200Y-94392150D01* X158959655Y-94192869D01* X158807131Y-94040345D01* X158607850Y-93957800D01* X158392150Y-93957800D01* X158192869Y-94040345D01* X158040345Y-94192869D01* X157957800Y-94392150D01* X154042200Y-94392150D01* X153959655Y-94192869D01* X153807131Y-94040345D01* X153607850Y-93957800D01* X153392150Y-93957800D01* X153192869Y-94040345D01* X153040345Y-94192869D01* X152957800Y-94392150D01* X152442200Y-94392150D01* X152359655Y-94192869D01* X152207131Y-94040345D01* X152007850Y-93957800D01* X151792150Y-93957800D01* X151592869Y-94040345D01* X151440345Y-94192869D01* X151357800Y-94392150D01* X148288200Y-94392150D01* X148288200Y-93692150D01* X186657800Y-93692150D01* X186657800Y-93907850D01* X186740345Y-94107131D01* X186892869Y-94259655D01* X187092150Y-94342200D01* X187307850Y-94342200D01* X187507131Y-94259655D01* X187659655Y-94107131D01* X187742200Y-93907850D01* X187742200Y-93692150D01* X187659655Y-93492869D01* X187507131Y-93340345D01* X187307850Y-93257800D01* X187092150Y-93257800D01* X186892869Y-93340345D01* X186740345Y-93492869D01* X186657800Y-93692150D01* X148288200Y-93692150D01* X148288200Y-92392150D01* X152957800Y-92392150D01* X152957800Y-92607850D01* X153040345Y-92807131D01* X153192869Y-92959655D01* X153392150Y-93042200D01* X153607850Y-93042200D01* X153807131Y-92959655D01* X153959655Y-92807131D01* X154042200Y-92607850D01* X154042200Y-92392150D01* X153959655Y-92192869D01* X153807131Y-92040345D01* X153607850Y-91957800D01* X153392150Y-91957800D01* X153192869Y-92040345D01* X153040345Y-92192869D01* X152957800Y-92392150D01* X148288200Y-92392150D01* X148288200Y-90392150D01* X163657800Y-90392150D01* X163657800Y-90607850D01* X163740345Y-90807131D01* X163892869Y-90959655D01* X164092150Y-91042200D01* X164307850Y-91042200D01* X164507131Y-90959655D01* X164659655Y-90807131D01* X164742200Y-90607850D01* X164742200Y-90392150D01* X166057800Y-90392150D01* X166057800Y-90607850D01* X166140345Y-90807131D01* X166292869Y-90959655D01* X166492150Y-91042200D01* X166707850Y-91042200D01* X166907131Y-90959655D01* X167059655Y-90807131D01* X167142200Y-90607850D01* X167142200Y-90392150D01* X167059655Y-90192869D01* X166907131Y-90040345D01* X166707850Y-89957800D01* X166492150Y-89957800D01* X166292869Y-90040345D01* X166140345Y-90192869D01* X166057800Y-90392150D01* X164742200Y-90392150D01* X164659655Y-90192869D01* X164507131Y-90040345D01* X164307850Y-89957800D01* X164092150Y-89957800D01* X163892869Y-90040345D01* X163740345Y-90192869D01* X163657800Y-90392150D01* X148288200Y-90392150D01* X148288200Y-85500000D01* X148266262Y-85389711D01* X148203788Y-85296212D01* X146999527Y-84091951D01* X149956800Y-84091951D01* X149956800Y-84308049D01* X150039497Y-84507698D01* X150192302Y-84660503D01* X150391951Y-84743200D01* X150608049Y-84743200D01* X150807698Y-84660503D01* X150960503Y-84507698D01* X151043200Y-84308049D01* X151043200Y-84092140D01* X151157800Y-84092140D01* X151157800Y-84307840D01* X151240345Y-84507121D01* X151392869Y-84659645D01* X151592150Y-84742190D01* X151807850Y-84742190D01* X152007131Y-84659645D01* X152159655Y-84507121D01* X152242200Y-84307840D01* X152242200Y-84092140D01* X152242122Y-84091951D01* X152356800Y-84091951D01* X152356800Y-84308049D01* X152439497Y-84507698D01* X152592302Y-84660503D01* X152791951Y-84743200D01* X153008049Y-84743200D01* X153207698Y-84660503D01* X153360503Y-84507698D01* X153443200Y-84308049D01* X153443200Y-84292150D01* X170057800Y-84292150D01* X170057800Y-84507850D01* X170140345Y-84707131D01* X170292869Y-84859655D01* X170492150Y-84942200D01* X170707850Y-84942200D01* X170907131Y-84859655D01* X171059655Y-84707131D01* X171142200Y-84507850D01* X171142200Y-84292150D01* X171100779Y-84192150D01* X177057800Y-84192150D01* X177057800Y-84407850D01* X177140345Y-84607131D01* X177292869Y-84759655D01* X177492150Y-84842200D01* X177707850Y-84842200D01* X177907131Y-84759655D01* X178059655Y-84607131D01* X178142200Y-84407850D01* X178142200Y-84192150D01* X178059655Y-83992869D01* X177907131Y-83840345D01* X177707850Y-83757800D01* X177492150Y-83757800D01* X177292869Y-83840345D01* X177140345Y-83992869D01* X177057800Y-84192150D01* X171100779Y-84192150D01* X171059655Y-84092869D01* X170907131Y-83940345D01* X170707850Y-83857800D01* X170492150Y-83857800D01* X170292869Y-83940345D01* X170140345Y-84092869D01* X170057800Y-84292150D01* X153443200Y-84292150D01* X153443200Y-84091951D01* X153360503Y-83892302D01* X153207698Y-83739497D01* X153008049Y-83656800D01* X152791951Y-83656800D01* X152592302Y-83739497D01* X152439497Y-83892302D01* X152356800Y-84091951D01* X152242122Y-84091951D01* X152159655Y-83892859D01* X152007131Y-83740335D01* X151807850Y-83657790D01* X151592150Y-83657790D01* X151392869Y-83740335D01* X151240345Y-83892859D01* X151157800Y-84092140D01* X151043200Y-84092140D01* X151043200Y-84091951D01* X150960503Y-83892302D01* X150807698Y-83739497D01* X150608049Y-83656800D01* X150391951Y-83656800D01* X150192302Y-83739497D01* X150039497Y-83892302D01* X149956800Y-84091951D01* X146999527Y-84091951D01* X144007576Y-81100000D01* X144759502Y-81100000D01* X144847840Y-81544103D01* X145099404Y-81920596D01* X145475897Y-82172160D01* X145807901Y-82238200D01* X146032099Y-82238200D01* X146364103Y-82172160D01* X146740596Y-81920596D01* X146992160Y-81544103D01* X147080498Y-81100000D01* X147299502Y-81100000D01* X147387840Y-81544103D01* X147639404Y-81920596D01* X148015897Y-82172160D01* X148347901Y-82238200D01* X148572099Y-82238200D01* X148904103Y-82172160D01* X149280596Y-81920596D01* X149532160Y-81544103D01* X149620498Y-81100000D01* X149575464Y-80873598D01* X149861800Y-80873598D01* X149861800Y-81326402D01* X150035080Y-81744739D01* X150355261Y-82064920D01* X150773598Y-82238200D01* X151226402Y-82238200D01* X151644739Y-82064920D01* X151964920Y-81744739D01* X152138200Y-81326402D01* X152138200Y-80992150D01* X184357800Y-80992150D01* X184357800Y-81207850D01* X184440345Y-81407131D01* X184592869Y-81559655D01* X184792150Y-81642200D01* X185007850Y-81642200D01* X185207131Y-81559655D01* X185359655Y-81407131D01* X185442200Y-81207850D01* X185442200Y-80992150D01* X185359655Y-80792869D01* X185207131Y-80640345D01* X185007850Y-80557800D01* X184792150Y-80557800D01* X184592869Y-80640345D01* X184440345Y-80792869D01* X184357800Y-80992150D01* X152138200Y-80992150D01* X152138200Y-80873598D01* X151964920Y-80455261D01* X151644739Y-80135080D01* X151226402Y-79961800D01* X150773598Y-79961800D01* X150355261Y-80135080D01* X150035080Y-80455261D01* X149861800Y-80873598D01* X149575464Y-80873598D01* X149532160Y-80655897D01* X149280596Y-80279404D01* X148904103Y-80027840D01* X148572099Y-79961800D01* X148347901Y-79961800D01* X148015897Y-80027840D01* X147639404Y-80279404D01* X147387840Y-80655897D01* X147299502Y-81100000D01* X147080498Y-81100000D01* X146992160Y-80655897D01* X146740596Y-80279404D01* X146364103Y-80027840D01* X146032099Y-79961800D01* X145807901Y-79961800D01* X145475897Y-80027840D01* X145099404Y-80279404D01* X144847840Y-80655897D01* X144759502Y-81100000D01* X144007576Y-81100000D01* X142799726Y-79892150D01* X167557800Y-79892150D01* X167557800Y-80107850D01* X167640345Y-80307131D01* X167792869Y-80459655D01* X167992150Y-80542200D01* X168207850Y-80542200D01* X168407131Y-80459655D01* X168559655Y-80307131D01* X168642200Y-80107850D01* X168642200Y-79892150D01* X168559655Y-79692869D01* X168458936Y-79592150D01* X177957800Y-79592150D01* X177957800Y-79807850D01* X178040345Y-80007131D01* X178192869Y-80159655D01* X178392150Y-80242200D01* X178607850Y-80242200D01* X178807131Y-80159655D01* X178959655Y-80007131D01* X179042200Y-79807850D01* X179042200Y-79592150D01* X178959655Y-79392869D01* X178858936Y-79292150D01* X185657800Y-79292150D01* X185657800Y-79507850D01* X185740345Y-79707131D01* X185892869Y-79859655D01* X186092150Y-79942200D01* X186307850Y-79942200D01* X186507131Y-79859655D01* X186659655Y-79707131D01* X186742200Y-79507850D01* X186742200Y-79292150D01* X186659655Y-79092869D01* X186507131Y-78940345D01* X186307850Y-78857800D01* X186092150Y-78857800D01* X185892869Y-78940345D01* X185740345Y-79092869D01* X185657800Y-79292150D01* X178858936Y-79292150D01* X178807131Y-79240345D01* X178607850Y-79157800D01* X178392150Y-79157800D01* X178192869Y-79240345D01* X178040345Y-79392869D01* X177957800Y-79592150D01* X168458936Y-79592150D01* X168408986Y-79542200D01* X168507850Y-79542200D01* X168707131Y-79459655D01* X168859655Y-79307131D01* X168942200Y-79107850D01* X168942200Y-78892150D01* X168859655Y-78692869D01* X168707131Y-78540345D01* X168507850Y-78457800D01* X168292150Y-78457800D01* X168092869Y-78540345D01* X167940345Y-78692869D01* X167857800Y-78892150D01* X167857800Y-79107850D01* X167940345Y-79307131D01* X168091014Y-79457800D01* X167992150Y-79457800D01* X167792869Y-79540345D01* X167640345Y-79692869D01* X167557800Y-79892150D01* X142799726Y-79892150D01* X140599527Y-77691951D01* X144756800Y-77691951D01* X144756800Y-77908049D01* X144839497Y-78107698D01* X144992302Y-78260503D01* X145191951Y-78343200D01* X145388599Y-78343200D01* X145339497Y-78392302D01* X145256800Y-78591951D01* X145256800Y-78808049D01* X145339497Y-79007698D01* X145492302Y-79160503D01* X145691951Y-79243200D01* X145908049Y-79243200D01* X146107698Y-79160503D01* X146260503Y-79007698D01* X146343200Y-78808049D01* X146343200Y-78691951D01* X148656800Y-78691951D01* X148656800Y-78908049D01* X148739497Y-79107698D01* X148892302Y-79260503D01* X149091951Y-79343200D01* X149308049Y-79343200D01* X149507698Y-79260503D01* X149660503Y-79107698D01* X149743200Y-78908049D01* X149743200Y-78891951D01* X151556800Y-78891951D01* X151556800Y-79108049D01* X151639497Y-79307698D01* X151792302Y-79460503D01* X151991951Y-79543200D01* X152208049Y-79543200D01* X152407698Y-79460503D01* X152560503Y-79307698D01* X152643200Y-79108049D01* X152643200Y-78891951D01* X152638017Y-78879439D01* X152791951Y-78943200D01* X153008049Y-78943200D01* X153021868Y-78937476D01* X152957800Y-79092150D01* X152957800Y-79307850D01* X153040345Y-79507131D01* X153192869Y-79659655D01* X153392150Y-79742200D01* X153607850Y-79742200D01* X153807131Y-79659655D01* X153959655Y-79507131D01* X154042200Y-79307850D01* X154042200Y-79092150D01* X153959655Y-78892869D01* X153807131Y-78740345D01* X153607850Y-78657800D01* X153392150Y-78657800D01* X153378898Y-78663289D01* X153443200Y-78508049D01* X153443200Y-78291951D01* X153360503Y-78092302D01* X153318201Y-78050000D01* X153460503Y-77907698D01* X153543200Y-77708049D01* X153543200Y-77491951D01* X153460503Y-77292302D01* X153307698Y-77139497D01* X153108049Y-77056800D01* X152891951Y-77056800D01* X152692302Y-77139497D01* X152539497Y-77292302D01* X152456800Y-77491951D01* X152456800Y-77708049D01* X152539497Y-77907698D01* X152581799Y-77950000D01* X152439497Y-78092302D01* X152356800Y-78291951D01* X152356800Y-78508049D01* X152361983Y-78520561D01* X152208049Y-78456800D01* X151991951Y-78456800D01* X151792302Y-78539497D01* X151639497Y-78692302D01* X151556800Y-78891951D01* X149743200Y-78891951D01* X149743200Y-78691951D01* X149660503Y-78492302D01* X149507698Y-78339497D01* X149308049Y-78256800D01* X149091951Y-78256800D01* X148892302Y-78339497D01* X148739497Y-78492302D01* X148656800Y-78691951D01* X146343200Y-78691951D01* X146343200Y-78591951D01* X146260503Y-78392302D01* X146107698Y-78239497D01* X145908049Y-78156800D01* X145711401Y-78156800D01* X145760503Y-78107698D01* X145843200Y-77908049D01* X145843200Y-77691951D01* X145760503Y-77492302D01* X145607698Y-77339497D01* X145408049Y-77256800D01* X145191951Y-77256800D01* X144992302Y-77339497D01* X144839497Y-77492302D01* X144756800Y-77691951D01* X140599527Y-77691951D01* X139799527Y-76891951D01* X141856800Y-76891951D01* X141856800Y-77108049D01* X141939497Y-77307698D01* X142092302Y-77460503D01* X142291951Y-77543200D01* X142508049Y-77543200D01* X142707698Y-77460503D01* X142860503Y-77307698D01* X142943200Y-77108049D01* X142943200Y-76891951D01* X142860503Y-76692302D01* X142707698Y-76539497D01* X142508049Y-76456800D01* X142291951Y-76456800D01* X142092302Y-76539497D01* X141939497Y-76692302D01* X141856800Y-76891951D01* X139799527Y-76891951D01* X138291400Y-75383824D01* X138291400Y-75202254D01* X138216589Y-75021644D01* X138136896Y-74941951D01* X141006800Y-74941951D01* X141006800Y-75158049D01* X141089497Y-75357698D01* X141242302Y-75510503D01* X141441951Y-75593200D01* X141658049Y-75593200D01* X141661064Y-75591951D01* X142556800Y-75591951D01* X142556800Y-75808049D01* X142639497Y-76007698D01* X142792302Y-76160503D01* X142991951Y-76243200D01* X143208049Y-76243200D01* X143407698Y-76160503D01* X143560503Y-76007698D01* X143587736Y-75941951D01* X145456800Y-75941951D01* X145456800Y-76158049D01* X145539497Y-76357698D01* X145692302Y-76510503D01* X145891951Y-76593200D01* X146108049Y-76593200D01* X146307698Y-76510503D01* X146460503Y-76357698D01* X146529074Y-76192150D01* X152857800Y-76192150D01* X152857800Y-76407850D01* X152940345Y-76607131D01* X153092869Y-76759655D01* X153292150Y-76842200D01* X153507850Y-76842200D01* X153707131Y-76759655D01* X153859655Y-76607131D01* X153942200Y-76407850D01* X153942200Y-76192150D01* X153859655Y-75992869D01* X153758936Y-75892150D01* X156957800Y-75892150D01* X156957800Y-76107850D01* X157040345Y-76307131D01* X157192869Y-76459655D01* X157290270Y-76500000D01* X157192869Y-76540345D01* X157040345Y-76692869D01* X156957800Y-76892150D01* X156957800Y-77107850D01* X157040345Y-77307131D01* X157192869Y-77459655D01* X157392150Y-77542200D01* X157607850Y-77542200D01* X157807131Y-77459655D01* X157874636Y-77392150D01* X158457800Y-77392150D01* X158457800Y-77607850D01* X158540345Y-77807131D01* X158692869Y-77959655D01* X158892150Y-78042200D01* X159107850Y-78042200D01* X159228681Y-77992150D01* X159757800Y-77992150D01* X159757800Y-78207850D01* X159840345Y-78407131D01* X159992869Y-78559655D01* X160192150Y-78642200D01* X160407850Y-78642200D01* X160607131Y-78559655D01* X160750000Y-78416786D01* X160892869Y-78559655D01* X161092150Y-78642200D01* X161307850Y-78642200D01* X161507131Y-78559655D01* X161659655Y-78407131D01* X161742200Y-78207850D01* X161742200Y-78192150D01* X181257800Y-78192150D01* X181257800Y-78407850D01* X181340345Y-78607131D01* X181492869Y-78759655D01* X181692150Y-78842200D01* X181907850Y-78842200D01* X182107131Y-78759655D01* X182259655Y-78607131D01* X182342200Y-78407850D01* X182342200Y-78192150D01* X182259655Y-77992869D01* X182107131Y-77840345D01* X181907850Y-77757800D01* X181692150Y-77757800D01* X181492869Y-77840345D01* X181340345Y-77992869D01* X181257800Y-78192150D01* X161742200Y-78192150D01* X161742200Y-77992150D01* X161659655Y-77792869D01* X161507131Y-77640345D01* X161307850Y-77557800D01* X161092150Y-77557800D01* X160892869Y-77640345D01* X160750000Y-77783214D01* X160607131Y-77640345D01* X160407850Y-77557800D01* X160192150Y-77557800D01* X159992869Y-77640345D01* X159840345Y-77792869D01* X159757800Y-77992150D01* X159228681Y-77992150D01* X159307131Y-77959655D01* X159459655Y-77807131D01* X159542200Y-77607850D01* X159542200Y-77392150D01* X159459655Y-77192869D01* X159307131Y-77040345D01* X159107850Y-76957800D01* X158892150Y-76957800D01* X158692869Y-77040345D01* X158540345Y-77192869D01* X158457800Y-77392150D01* X157874636Y-77392150D01* X157959655Y-77307131D01* X158042200Y-77107850D01* X158042200Y-76892150D01* X157959655Y-76692869D01* X157807131Y-76540345D01* X157709730Y-76500000D01* X157807131Y-76459655D01* X157959655Y-76307131D01* X158042200Y-76107850D01* X158042200Y-76020000D01* X179139502Y-76020000D01* X179227840Y-76464103D01* X179479404Y-76840596D01* X179855897Y-77092160D01* X180187901Y-77158200D01* X180412099Y-77158200D01* X180744103Y-77092160D01* X181120596Y-76840596D01* X181372160Y-76464103D01* X181460498Y-76020000D01* X181679502Y-76020000D01* X181767840Y-76464103D01* X182019404Y-76840596D01* X182395897Y-77092160D01* X182727901Y-77158200D01* X182952099Y-77158200D01* X183233357Y-77102254D01* X186708600Y-77102254D01* X186708600Y-77297746D01* X186783411Y-77478356D01* X186921644Y-77616589D01* X187102254Y-77691400D01* X187297746Y-77691400D01* X187478356Y-77616589D01* X187616589Y-77478356D01* X187691400Y-77297746D01* X187691400Y-77102254D01* X187616589Y-76921644D01* X187478356Y-76783411D01* X187297746Y-76708600D01* X187102254Y-76708600D01* X186921644Y-76783411D01* X186783411Y-76921644D01* X186708600Y-77102254D01* X183233357Y-77102254D01* X183284103Y-77092160D01* X183660596Y-76840596D01* X183912160Y-76464103D01* X184000498Y-76020000D01* X183912160Y-75575897D01* X183662501Y-75202254D01* X186708600Y-75202254D01* X186708600Y-75397746D01* X186783411Y-75578356D01* X186921644Y-75716589D01* X187102254Y-75791400D01* X187297746Y-75791400D01* X187478356Y-75716589D01* X187616589Y-75578356D01* X187691400Y-75397746D01* X187691400Y-75202254D01* X187616589Y-75021644D01* X187478356Y-74883411D01* X187297746Y-74808600D01* X187102254Y-74808600D01* X186921644Y-74883411D01* X186783411Y-75021644D01* X186708600Y-75202254D01* X183662501Y-75202254D01* X183660596Y-75199404D01* X183284103Y-74947840D01* X182952099Y-74881800D01* X182727901Y-74881800D01* X182395897Y-74947840D01* X182019404Y-75199404D01* X181767840Y-75575897D01* X181679502Y-76020000D01* X181460498Y-76020000D01* X181372160Y-75575897D01* X181120596Y-75199404D01* X180744103Y-74947840D01* X180412099Y-74881800D01* X180187901Y-74881800D01* X179855897Y-74947840D01* X179479404Y-75199404D01* X179227840Y-75575897D01* X179139502Y-76020000D01* X158042200Y-76020000D01* X158042200Y-75892150D01* X157959655Y-75692869D01* X157807131Y-75540345D01* X157607850Y-75457800D01* X157392150Y-75457800D01* X157192869Y-75540345D01* X157040345Y-75692869D01* X156957800Y-75892150D01* X153758936Y-75892150D01* X153707131Y-75840345D01* X153507850Y-75757800D01* X153292150Y-75757800D01* X153092869Y-75840345D01* X152940345Y-75992869D01* X152857800Y-76192150D01* X146529074Y-76192150D01* X146543200Y-76158049D01* X146543200Y-75941951D01* X146460503Y-75742302D01* X146307698Y-75589497D01* X146108049Y-75506800D01* X145891951Y-75506800D01* X145692302Y-75589497D01* X145539497Y-75742302D01* X145456800Y-75941951D01* X143587736Y-75941951D01* X143643200Y-75808049D01* X143643200Y-75591951D01* X143560503Y-75392302D01* X143407698Y-75239497D01* X143208049Y-75156800D01* X142991951Y-75156800D01* X142792302Y-75239497D01* X142639497Y-75392302D01* X142556800Y-75591951D01* X141661064Y-75591951D01* X141857698Y-75510503D01* X142010503Y-75357698D01* X142093200Y-75158049D01* X142093200Y-75091951D01* X149456800Y-75091951D01* X149456800Y-75308049D01* X149539497Y-75507698D01* X149692302Y-75660503D01* X149891951Y-75743200D01* X150108049Y-75743200D01* X150307698Y-75660503D01* X150460503Y-75507698D01* X150543200Y-75308049D01* X150543200Y-75091951D01* X150460503Y-74892302D01* X150307698Y-74739497D01* X150108049Y-74656800D01* X149891951Y-74656800D01* X149692302Y-74739497D01* X149539497Y-74892302D01* X149456800Y-75091951D01* X142093200Y-75091951D01* X142093200Y-74941951D01* X142031136Y-74792114D01* X142263108Y-74888200D01* X142536892Y-74888200D01* X142789834Y-74783428D01* X142983428Y-74589834D01* X143088200Y-74336892D01* X143088200Y-74063108D01* X143058726Y-73991951D01* X147656800Y-73991951D01* X147656800Y-74208049D01* X147739497Y-74407698D01* X147892302Y-74560503D01* X148091951Y-74643200D01* X148308049Y-74643200D01* X148507698Y-74560503D01* X148660503Y-74407698D01* X148666943Y-74392150D01* X152857800Y-74392150D01* X152857800Y-74607850D01* X152940345Y-74807131D01* X153092869Y-74959655D01* X153292150Y-75042200D01* X153507850Y-75042200D01* X153707131Y-74959655D01* X153859655Y-74807131D01* X153942200Y-74607850D01* X153942200Y-74392150D01* X153859655Y-74192869D01* X153858936Y-74192150D01* X168857800Y-74192150D01* X168857800Y-74407850D01* X168940345Y-74607131D01* X169092869Y-74759655D01* X169292150Y-74842200D01* X169507850Y-74842200D01* X169707131Y-74759655D01* X169859655Y-74607131D01* X169942200Y-74407850D01* X169942200Y-74192150D01* X169859655Y-73992869D01* X169707131Y-73840345D01* X169507850Y-73757800D01* X169292150Y-73757800D01* X169092869Y-73840345D01* X168940345Y-73992869D01* X168857800Y-74192150D01* X153858936Y-74192150D01* X153707131Y-74040345D01* X153507850Y-73957800D01* X153292150Y-73957800D01* X153092869Y-74040345D01* X152940345Y-74192869D01* X152857800Y-74392150D01* X148666943Y-74392150D01* X148743200Y-74208049D01* X148743200Y-73991951D01* X148660503Y-73792302D01* X148507698Y-73639497D01* X148308049Y-73556800D01* X148091951Y-73556800D01* X147892302Y-73639497D01* X147739497Y-73792302D01* X147656800Y-73991951D01* X143058726Y-73991951D01* X142983428Y-73810166D01* X142789834Y-73616572D01* X142536892Y-73511800D01* X142263108Y-73511800D01* X142010166Y-73616572D01* X141816572Y-73810166D01* X141711800Y-74063108D01* X141711800Y-74336892D01* X141807886Y-74568864D01* X141658049Y-74506800D01* X141441951Y-74506800D01* X141242302Y-74589497D01* X141089497Y-74742302D01* X141006800Y-74941951D01* X138136896Y-74941951D01* X138094945Y-74900000D01* X138216589Y-74778356D01* X138291400Y-74597746D01* X138291400Y-74402254D01* X138216589Y-74221644D01* X138078356Y-74083411D01* X137897746Y-74008600D01* X137702254Y-74008600D01* X137521644Y-74083411D01* X137383411Y-74221644D01* X137308600Y-74402254D01* X137308600Y-74597746D01* X137355843Y-74711800D01* X131717534Y-74711800D01* X131742200Y-74652250D01* X131742200Y-74436550D01* X131659655Y-74237269D01* X131507131Y-74084745D01* X131307850Y-74002200D01* X131092150Y-74002200D01* X130892869Y-74084745D01* X130740345Y-74237269D01* X130657800Y-74436550D01* X130657800Y-74652250D01* X130682466Y-74711800D01* X125944157Y-74711800D01* X125991400Y-74597746D01* X125991400Y-74402254D01* X125916589Y-74221644D01* X125778356Y-74083411D01* X125597746Y-74008600D01* X125402254Y-74008600D01* X125221644Y-74083411D01* X125083411Y-74221644D01* X125008600Y-74402254D01* X125008600Y-74597746D01* X125055843Y-74711800D01* X124944157Y-74711800D01* X124991400Y-74597746D01* X124991400Y-74402254D01* X124916589Y-74221644D01* X124778356Y-74083411D01* X124597746Y-74008600D01* X124402254Y-74008600D01* X124221644Y-74083411D01* X124083411Y-74221644D01* X124008600Y-74402254D01* X124008600Y-74597746D01* X124055843Y-74711800D01* X123944157Y-74711800D01* X123991400Y-74597746D01* X123991400Y-74402254D01* X123916589Y-74221644D01* X123778356Y-74083411D01* X123597746Y-74008600D01* X123402254Y-74008600D01* X123221644Y-74083411D01* X123083411Y-74221644D01* X123008600Y-74402254D01* X123008600Y-74597746D01* X123055843Y-74711800D01* X121944157Y-74711800D01* X121991400Y-74597746D01* X121991400Y-74402254D01* X121916589Y-74221644D01* X121778356Y-74083411D01* X121597746Y-74008600D01* X121402254Y-74008600D01* X121221644Y-74083411D01* X121083411Y-74221644D01* X121008600Y-74402254D01* X121008600Y-74597746D01* X121055843Y-74711800D01* X120944157Y-74711800D01* X120991400Y-74597746D01* X120991400Y-74402254D01* X120916589Y-74221644D01* X120778356Y-74083411D01* X120597746Y-74008600D01* X120402254Y-74008600D01* X120221644Y-74083411D01* X120083411Y-74221644D01* X120008600Y-74402254D01* X120008600Y-74597746D01* X120055843Y-74711800D01* X118944157Y-74711800D01* X118991400Y-74597746D01* X118991400Y-74402254D01* X118916589Y-74221644D01* X118778356Y-74083411D01* X118597746Y-74008600D01* X118402254Y-74008600D01* X118221644Y-74083411D01* X118083411Y-74221644D01* X118008600Y-74402254D01* X118008600Y-74597746D01* X118055843Y-74711800D01* X117944157Y-74711800D01* X117991400Y-74597746D01* X117991400Y-74402254D01* X117916589Y-74221644D01* X117778356Y-74083411D01* X117597746Y-74008600D01* X117402254Y-74008600D01* X117221644Y-74083411D01* X117083411Y-74221644D01* X117008600Y-74402254D01* X117008600Y-74597746D01* X117055843Y-74711800D01* X116944157Y-74711800D01* X116991400Y-74597746D01* X116991400Y-74402254D01* X116916589Y-74221644D01* X116778356Y-74083411D01* X116597746Y-74008600D01* X116402254Y-74008600D01* X116221644Y-74083411D01* X116083411Y-74221644D01* X116008600Y-74402254D01* X116008600Y-74597746D01* X116055843Y-74711800D01* X115944157Y-74711800D01* X115991400Y-74597746D01* X115991400Y-74402254D01* X115916589Y-74221644D01* X115778356Y-74083411D01* X115597746Y-74008600D01* X115402254Y-74008600D01* X115221644Y-74083411D01* X115083411Y-74221644D01* X115008600Y-74402254D01* X115008600Y-74597746D01* X115055843Y-74711800D01* X114944157Y-74711800D01* X114991400Y-74597746D01* X114991400Y-74402254D01* X114916589Y-74221644D01* X114778356Y-74083411D01* X114597746Y-74008600D01* X114402254Y-74008600D01* X114221644Y-74083411D01* X114083411Y-74221644D01* X114008600Y-74402254D01* X114008600Y-74597746D01* X114055843Y-74711800D01* X113944157Y-74711800D01* X113991400Y-74597746D01* X113991400Y-74402254D01* X113916589Y-74221644D01* X113778356Y-74083411D01* X113597746Y-74008600D01* X113402254Y-74008600D01* X113221644Y-74083411D01* X113083411Y-74221644D01* X113008600Y-74402254D01* X113008600Y-74597746D01* X113055843Y-74711800D01* X111944157Y-74711800D01* X111991400Y-74597746D01* X111991400Y-74402254D01* X111916589Y-74221644D01* X111778356Y-74083411D01* X111597746Y-74008600D01* X111402254Y-74008600D01* X111221644Y-74083411D01* X111083411Y-74221644D01* X111008600Y-74402254D01* X111008600Y-74597746D01* X111055843Y-74711800D01* X110944157Y-74711800D01* X110991400Y-74597746D01* X110991400Y-74402254D01* X110916589Y-74221644D01* X110778356Y-74083411D01* X110597746Y-74008600D01* X110402254Y-74008600D01* X110221644Y-74083411D01* X110083411Y-74221644D01* X110008600Y-74402254D01* X110008600Y-74597746D01* X110055843Y-74711800D01* X110000000Y-74711800D01* X109889711Y-74733738D01* X109796212Y-74796212D01* X109733738Y-74889711D01* X109711800Y-75000000D01* X109711800Y-77055843D01* X109597746Y-77008600D01* X109402254Y-77008600D01* X109221644Y-77083411D01* X109083411Y-77221644D01* X109008600Y-77402254D01* X108991400Y-77402254D01* X108916589Y-77221644D01* X108778356Y-77083411D01* X108597746Y-77008600D01* X108402254Y-77008600D01* X108221644Y-77083411D01* X108083411Y-77221644D01* X108008600Y-77402254D01* X107991400Y-77402254D01* X107916589Y-77221644D01* X107778356Y-77083411D01* X107597746Y-77008600D01* X107402254Y-77008600D01* X107221644Y-77083411D01* X107083411Y-77221644D01* X107008600Y-77402254D01* X105991400Y-77402254D01* X105916589Y-77221644D01* X105778356Y-77083411D01* X105597746Y-77008600D01* X105402254Y-77008600D01* X105221644Y-77083411D01* X105083411Y-77221644D01* X105008600Y-77402254D01* X103991400Y-77402254D01* X103916589Y-77221644D01* X103778356Y-77083411D01* X103597746Y-77008600D01* X103402254Y-77008600D01* X103221644Y-77083411D01* X103083411Y-77221644D01* X103008600Y-77402254D01* X102991400Y-77402254D01* X102916589Y-77221644D01* X102778356Y-77083411D01* X102597746Y-77008600D01* X102402254Y-77008600D01* X102221644Y-77083411D01* X102083411Y-77221644D01* X102008600Y-77402254D01* X100369040Y-77402254D01* X100307131Y-77340345D01* X100107850Y-77257800D01* X99892150Y-77257800D01* X99692869Y-77340345D01* X99540345Y-77492869D01* X99457800Y-77692150D01* X80943200Y-77692150D01* X80943200Y-77591951D01* X80860503Y-77392302D01* X80707698Y-77239497D01* X80508049Y-77156800D01* X80291951Y-77156800D01* X80092302Y-77239497D01* X79939497Y-77392302D01* X79856800Y-77591951D01* X79856800Y-77808049D01* X79939497Y-78007698D01* X80092302Y-78160503D01* X80216144Y-78211800D01* X78083856Y-78211800D01* X78207698Y-78160503D01* X78360503Y-78007698D01* X78443200Y-77808049D01* X78443200Y-77591951D01* X78360503Y-77392302D01* X78260351Y-77292150D01* X78657800Y-77292150D01* X78657800Y-77507850D01* X78740345Y-77707131D01* X78892869Y-77859655D01* X79092150Y-77942200D01* X79307850Y-77942200D01* X79507131Y-77859655D01* X79659655Y-77707131D01* X79742200Y-77507850D01* X79742200Y-77292150D01* X79659655Y-77092869D01* X79507131Y-76940345D01* X79307850Y-76857800D01* X79092150Y-76857800D01* X78892869Y-76940345D01* X78740345Y-77092869D01* X78657800Y-77292150D01* X78260351Y-77292150D01* X78207698Y-77239497D01* X78008049Y-77156800D01* X77791951Y-77156800D01* X77592302Y-77239497D01* X77439497Y-77392302D01* X77356800Y-77591951D01* X77356800Y-77808049D01* X77439497Y-78007698D01* X77592302Y-78160503D01* X77716144Y-78211800D01* X70799142Y-78211800D01* X70842200Y-78107850D01* X70842200Y-77892150D01* X70759655Y-77692869D01* X70607131Y-77540345D01* X70407850Y-77457800D01* X70192150Y-77457800D01* X69992869Y-77540345D01* X69840345Y-77692869D01* X69757800Y-77892150D01* X69757800Y-78107850D01* X69800858Y-78211800D01* X69000000Y-78211800D01* X68889711Y-78233738D01* X68796212Y-78296212D01* X68733738Y-78389711D01* X68711800Y-78500000D01* X68711800Y-82805318D01* X68461050Y-83056068D01* X68306800Y-83428462D01* X68306800Y-83831538D01* X68404248Y-84066800D01* X68009060Y-84066800D01* X67434518Y-84304783D01* X66994783Y-84744518D01* X66756800Y-85319060D01* X66363200Y-85319060D01* X66363200Y-77892150D01* X66857800Y-77892150D01* X66857800Y-78107850D01* X66940345Y-78307131D01* X67092869Y-78459655D01* X67292150Y-78542200D01* X67507850Y-78542200D01* X67707131Y-78459655D01* X67859655Y-78307131D01* X67942200Y-78107850D01* X67942200Y-77892150D01* X67859655Y-77692869D01* X67707131Y-77540345D01* X67507850Y-77457800D01* X67292150Y-77457800D01* X67092869Y-77540345D01* X66940345Y-77692869D01* X66857800Y-77892150D01* X66363200Y-77892150D01* X66363200Y-76402254D01* X103008600Y-76402254D01* X103008600Y-76597746D01* X103083411Y-76778356D01* X103221644Y-76916589D01* X103402254Y-76991400D01* X103597746Y-76991400D01* X103778356Y-76916589D01* X103916589Y-76778356D01* X103991400Y-76597746D01* X103991400Y-76402254D01* X104008600Y-76402254D01* X104008600Y-76597746D01* X104083411Y-76778356D01* X104221644Y-76916589D01* X104402254Y-76991400D01* X104597746Y-76991400D01* X104778356Y-76916589D01* X104916589Y-76778356D01* X104991400Y-76597746D01* X104991400Y-76402254D01* X105008600Y-76402254D01* X105008600Y-76597746D01* X105083411Y-76778356D01* X105221644Y-76916589D01* X105402254Y-76991400D01* X105597746Y-76991400D01* X105778356Y-76916589D01* X105916589Y-76778356D01* X105991400Y-76597746D01* X105991400Y-76402254D01* X106008600Y-76402254D01* X106008600Y-76597746D01* X106083411Y-76778356D01* X106221644Y-76916589D01* X106402254Y-76991400D01* X106597746Y-76991400D01* X106778356Y-76916589D01* X106916589Y-76778356D01* X106991400Y-76597746D01* X106991400Y-76402254D01* X108008600Y-76402254D01* X108008600Y-76597746D01* X108083411Y-76778356D01* X108221644Y-76916589D01* X108402254Y-76991400D01* X108597746Y-76991400D01* X108778356Y-76916589D01* X108916589Y-76778356D01* X108991400Y-76597746D01* X108991400Y-76402254D01* X108916589Y-76221644D01* X108778356Y-76083411D01* X108597746Y-76008600D01* X108402254Y-76008600D01* X108221644Y-76083411D01* X108083411Y-76221644D01* X108008600Y-76402254D01* X106991400Y-76402254D01* X106916589Y-76221644D01* X106778356Y-76083411D01* X106597746Y-76008600D01* X106402254Y-76008600D01* X106221644Y-76083411D01* X106083411Y-76221644D01* X106008600Y-76402254D01* X105991400Y-76402254D01* X105916589Y-76221644D01* X105778356Y-76083411D01* X105597746Y-76008600D01* X105402254Y-76008600D01* X105221644Y-76083411D01* X105083411Y-76221644D01* X105008600Y-76402254D01* X104991400Y-76402254D01* X104916589Y-76221644D01* X104778356Y-76083411D01* X104597746Y-76008600D01* X104402254Y-76008600D01* X104221644Y-76083411D01* X104083411Y-76221644D01* X104008600Y-76402254D01* X103991400Y-76402254D01* X103916589Y-76221644D01* X103778356Y-76083411D01* X103597746Y-76008600D01* X103402254Y-76008600D01* X103221644Y-76083411D01* X103083411Y-76221644D01* X103008600Y-76402254D01* X66363200Y-76402254D01* X66363200Y-75492150D01* X66857800Y-75492150D01* X66857800Y-75707850D01* X66940345Y-75907131D01* X67092869Y-76059655D01* X67292150Y-76142200D01* X67507850Y-76142200D01* X67707131Y-76059655D01* X67859655Y-75907131D01* X67942200Y-75707850D01* X67942200Y-75492150D01* X67904964Y-75402254D01* X105008600Y-75402254D01* X105008600Y-75597746D01* X105083411Y-75778356D01* X105221644Y-75916589D01* X105402254Y-75991400D01* X105597746Y-75991400D01* X105778356Y-75916589D01* X105916589Y-75778356D01* X105991400Y-75597746D01* X105991400Y-75402254D01* X106008600Y-75402254D01* X106008600Y-75597746D01* X106083411Y-75778356D01* X106221644Y-75916589D01* X106402254Y-75991400D01* X106597746Y-75991400D01* X106778356Y-75916589D01* X106916589Y-75778356D01* X106991400Y-75597746D01* X106991400Y-75402254D01* X106916589Y-75221644D01* X106778356Y-75083411D01* X106597746Y-75008600D01* X106402254Y-75008600D01* X106221644Y-75083411D01* X106083411Y-75221644D01* X106008600Y-75402254D01* X105991400Y-75402254D01* X105916589Y-75221644D01* X105778356Y-75083411D01* X105597746Y-75008600D01* X105402254Y-75008600D01* X105221644Y-75083411D01* X105083411Y-75221644D01* X105008600Y-75402254D01* X67904964Y-75402254D01* X67859655Y-75292869D01* X67707131Y-75140345D01* X67507850Y-75057800D01* X67292150Y-75057800D01* X67092869Y-75140345D01* X66940345Y-75292869D01* X66857800Y-75492150D01* X66363200Y-75492150D01* X66363200Y-73480000D01* X92239502Y-73480000D01* X92327840Y-73924103D01* X92579404Y-74300596D01* X92955897Y-74552160D01* X93287901Y-74618200D01* X93512099Y-74618200D01* X93844103Y-74552160D01* X94220596Y-74300596D01* X94472160Y-73924103D01* X94560498Y-73480000D01* X94779502Y-73480000D01* X94867840Y-73924103D01* X95119404Y-74300596D01* X95495897Y-74552160D01* X95827901Y-74618200D01* X96052099Y-74618200D01* X96384103Y-74552160D01* X96608453Y-74402254D01* X102008600Y-74402254D01* X102008600Y-74597746D01* X102083411Y-74778356D01* X102221644Y-74916589D01* X102402254Y-74991400D01* X102597746Y-74991400D01* X102778356Y-74916589D01* X102916589Y-74778356D01* X102991400Y-74597746D01* X102991400Y-74402254D01* X103008600Y-74402254D01* X103008600Y-74597746D01* X103083411Y-74778356D01* X103221644Y-74916589D01* X103402254Y-74991400D01* X103597746Y-74991400D01* X103778356Y-74916589D01* X103916589Y-74778356D01* X103991400Y-74597746D01* X103991400Y-74402254D01* X104008600Y-74402254D01* X104008600Y-74597746D01* X104083411Y-74778356D01* X104221644Y-74916589D01* X104402254Y-74991400D01* X104597746Y-74991400D01* X104778356Y-74916589D01* X104916589Y-74778356D01* X104991400Y-74597746D01* X104991400Y-74402254D01* X105008600Y-74402254D01* X105008600Y-74597746D01* X105083411Y-74778356D01* X105221644Y-74916589D01* X105402254Y-74991400D01* X105597746Y-74991400D01* X105778356Y-74916589D01* X105916589Y-74778356D01* X105991400Y-74597746D01* X105991400Y-74402254D01* X106008600Y-74402254D01* X106008600Y-74597746D01* X106083411Y-74778356D01* X106221644Y-74916589D01* X106402254Y-74991400D01* X106597746Y-74991400D01* X106778356Y-74916589D01* X106916589Y-74778356D01* X106991400Y-74597746D01* X106991400Y-74402254D01* X106916589Y-74221644D01* X106778356Y-74083411D01* X106597746Y-74008600D01* X106402254Y-74008600D01* X106221644Y-74083411D01* X106083411Y-74221644D01* X106008600Y-74402254D01* X105991400Y-74402254D01* X105916589Y-74221644D01* X105778356Y-74083411D01* X105597746Y-74008600D01* X105402254Y-74008600D01* X105221644Y-74083411D01* X105083411Y-74221644D01* X105008600Y-74402254D01* X104991400Y-74402254D01* X104916589Y-74221644D01* X104778356Y-74083411D01* X104597746Y-74008600D01* X104402254Y-74008600D01* X104221644Y-74083411D01* X104083411Y-74221644D01* X104008600Y-74402254D01* X103991400Y-74402254D01* X103916589Y-74221644D01* X103778356Y-74083411D01* X103597746Y-74008600D01* X103402254Y-74008600D01* X103221644Y-74083411D01* X103083411Y-74221644D01* X103008600Y-74402254D01* X102991400Y-74402254D01* X102916589Y-74221644D01* X102778356Y-74083411D01* X102597746Y-74008600D01* X102402254Y-74008600D01* X102221644Y-74083411D01* X102083411Y-74221644D01* X102008600Y-74402254D01* X96608453Y-74402254D01* X96760596Y-74300596D01* X97012160Y-73924103D01* X97100498Y-73480000D01* X97085034Y-73402254D01* X102008600Y-73402254D01* X102008600Y-73597746D01* X102083411Y-73778356D01* X102221644Y-73916589D01* X102402254Y-73991400D01* X102597746Y-73991400D01* X102778356Y-73916589D01* X102916589Y-73778356D01* X102991400Y-73597746D01* X102991400Y-73402254D01* X103008600Y-73402254D01* X103008600Y-73597746D01* X103083411Y-73778356D01* X103221644Y-73916589D01* X103402254Y-73991400D01* X103597746Y-73991400D01* X103778356Y-73916589D01* X103916589Y-73778356D01* X103991400Y-73597746D01* X103991400Y-73402254D01* X104008600Y-73402254D01* X104008600Y-73597746D01* X104083411Y-73778356D01* X104221644Y-73916589D01* X104402254Y-73991400D01* X104597746Y-73991400D01* X104778356Y-73916589D01* X104916589Y-73778356D01* X104991400Y-73597746D01* X104991400Y-73402254D01* X105008600Y-73402254D01* X105008600Y-73597746D01* X105083411Y-73778356D01* X105221644Y-73916589D01* X105402254Y-73991400D01* X105597746Y-73991400D01* X105778356Y-73916589D01* X105916589Y-73778356D01* X105991400Y-73597746D01* X105991400Y-73402254D01* X108008600Y-73402254D01* X108008600Y-73597746D01* X108083411Y-73778356D01* X108221644Y-73916589D01* X108402254Y-73991400D01* X108597746Y-73991400D01* X108778356Y-73916589D01* X108916589Y-73778356D01* X108991400Y-73597746D01* X108991400Y-73402254D01* X109008600Y-73402254D01* X109008600Y-73597746D01* X109083411Y-73778356D01* X109221644Y-73916589D01* X109402254Y-73991400D01* X109597746Y-73991400D01* X109778356Y-73916589D01* X109916589Y-73778356D01* X109991400Y-73597746D01* X109991400Y-73402254D01* X120008600Y-73402254D01* X120008600Y-73597746D01* X120083411Y-73778356D01* X120221644Y-73916589D01* X120402254Y-73991400D01* X120597746Y-73991400D01* X120778356Y-73916589D01* X120916589Y-73778356D01* X120991400Y-73597746D01* X120991400Y-73402254D01* X121008600Y-73402254D01* X121008600Y-73597746D01* X121083411Y-73778356D01* X121221644Y-73916589D01* X121402254Y-73991400D01* X121597746Y-73991400D01* X121778356Y-73916589D01* X121916589Y-73778356D01* X121991400Y-73597746D01* X121991400Y-73402254D01* X123008600Y-73402254D01* X123008600Y-73597746D01* X123083411Y-73778356D01* X123221644Y-73916589D01* X123402254Y-73991400D01* X123597746Y-73991400D01* X123778356Y-73916589D01* X123916589Y-73778356D01* X123991400Y-73597746D01* X123991400Y-73402254D01* X125008600Y-73402254D01* X125008600Y-73597746D01* X125083411Y-73778356D01* X125221644Y-73916589D01* X125402254Y-73991400D01* X125597746Y-73991400D01* X125778356Y-73916589D01* X125916589Y-73778356D01* X125991400Y-73597746D01* X125991400Y-73402254D01* X125916589Y-73221644D01* X125778356Y-73083411D01* X125597746Y-73008600D01* X125402254Y-73008600D01* X125221644Y-73083411D01* X125083411Y-73221644D01* X125008600Y-73402254D01* X123991400Y-73402254D01* X123916589Y-73221644D01* X123778356Y-73083411D01* X123597746Y-73008600D01* X123402254Y-73008600D01* X123221644Y-73083411D01* X123083411Y-73221644D01* X123008600Y-73402254D01* X121991400Y-73402254D01* X121916589Y-73221644D01* X121778356Y-73083411D01* X121597746Y-73008600D01* X121402254Y-73008600D01* X121221644Y-73083411D01* X121083411Y-73221644D01* X121008600Y-73402254D01* X120991400Y-73402254D01* X120916589Y-73221644D01* X120778356Y-73083411D01* X120597746Y-73008600D01* X120402254Y-73008600D01* X120221644Y-73083411D01* X120083411Y-73221644D01* X120008600Y-73402254D01* X109991400Y-73402254D01* X109916589Y-73221644D01* X109778356Y-73083411D01* X109597746Y-73008600D01* X109402254Y-73008600D01* X109221644Y-73083411D01* X109083411Y-73221644D01* X109008600Y-73402254D01* X108991400Y-73402254D01* X108916589Y-73221644D01* X108778356Y-73083411D01* X108597746Y-73008600D01* X108402254Y-73008600D01* X108221644Y-73083411D01* X108083411Y-73221644D01* X108008600Y-73402254D01* X105991400Y-73402254D01* X105916589Y-73221644D01* X105778356Y-73083411D01* X105597746Y-73008600D01* X105402254Y-73008600D01* X105221644Y-73083411D01* X105083411Y-73221644D01* X105008600Y-73402254D01* X104991400Y-73402254D01* X104916589Y-73221644D01* X104778356Y-73083411D01* X104597746Y-73008600D01* X104402254Y-73008600D01* X104221644Y-73083411D01* X104083411Y-73221644D01* X104008600Y-73402254D01* X103991400Y-73402254D01* X103916589Y-73221644D01* X103778356Y-73083411D01* X103597746Y-73008600D01* X103402254Y-73008600D01* X103221644Y-73083411D01* X103083411Y-73221644D01* X103008600Y-73402254D01* X102991400Y-73402254D01* X102916589Y-73221644D01* X102778356Y-73083411D01* X102597746Y-73008600D01* X102402254Y-73008600D01* X102221644Y-73083411D01* X102083411Y-73221644D01* X102008600Y-73402254D01* X97085034Y-73402254D01* X97012160Y-73035897D01* X96760596Y-72659404D01* X96384103Y-72407840D01* X96356021Y-72402254D01* X102008600Y-72402254D01* X102008600Y-72597746D01* X102083411Y-72778356D01* X102221644Y-72916589D01* X102402254Y-72991400D01* X102597746Y-72991400D01* X102778356Y-72916589D01* X102916589Y-72778356D01* X102991400Y-72597746D01* X102991400Y-72402254D01* X103008600Y-72402254D01* X103008600Y-72597746D01* X103083411Y-72778356D01* X103221644Y-72916589D01* X103402254Y-72991400D01* X103597746Y-72991400D01* X103778356Y-72916589D01* X103916589Y-72778356D01* X103991400Y-72597746D01* X103991400Y-72402254D01* X104008600Y-72402254D01* X104008600Y-72597746D01* X104083411Y-72778356D01* X104221644Y-72916589D01* X104402254Y-72991400D01* X104597746Y-72991400D01* X104778356Y-72916589D01* X104916589Y-72778356D01* X104991400Y-72597746D01* X104991400Y-72402254D01* X105008600Y-72402254D01* X105008600Y-72597746D01* X105083411Y-72778356D01* X105221644Y-72916589D01* X105402254Y-72991400D01* X105597746Y-72991400D01* X105778356Y-72916589D01* X105916589Y-72778356D01* X105991400Y-72597746D01* X105991400Y-72402254D01* X106008600Y-72402254D01* X106008600Y-72597746D01* X106083411Y-72778356D01* X106221644Y-72916589D01* X106402254Y-72991400D01* X106597746Y-72991400D01* X106778356Y-72916589D01* X106916589Y-72778356D01* X106991400Y-72597746D01* X106991400Y-72402254D01* X109008600Y-72402254D01* X109008600Y-72597746D01* X109083411Y-72778356D01* X109221644Y-72916589D01* X109402254Y-72991400D01* X109597746Y-72991400D01* X109778356Y-72916589D01* X109916589Y-72778356D01* X109991400Y-72597746D01* X109991400Y-72402254D01* X111008600Y-72402254D01* X111008600Y-72597746D01* X111083411Y-72778356D01* X111221644Y-72916589D01* X111402254Y-72991400D01* X111597746Y-72991400D01* X111778356Y-72916589D01* X111916589Y-72778356D01* X111991400Y-72597746D01* X111991400Y-72402254D01* X115008600Y-72402254D01* X115008600Y-72597746D01* X115083411Y-72778356D01* X115221644Y-72916589D01* X115402254Y-72991400D01* X115597746Y-72991400D01* X115778356Y-72916589D01* X115916589Y-72778356D01* X115991400Y-72597746D01* X115991400Y-72402254D01* X117008600Y-72402254D01* X117008600Y-72597746D01* X117083411Y-72778356D01* X117221644Y-72916589D01* X117402254Y-72991400D01* X117597746Y-72991400D01* X117778356Y-72916589D01* X117916589Y-72778356D01* X117991400Y-72597746D01* X117991400Y-72402254D01* X122008600Y-72402254D01* X122008600Y-72597746D01* X122083411Y-72778356D01* X122221644Y-72916589D01* X122402254Y-72991400D01* X122597746Y-72991400D01* X122778356Y-72916589D01* X122916589Y-72778356D01* X122991400Y-72597746D01* X122991400Y-72402254D01* X123008600Y-72402254D01* X123008600Y-72597746D01* X123083411Y-72778356D01* X123221644Y-72916589D01* X123402254Y-72991400D01* X123597746Y-72991400D01* X123778356Y-72916589D01* X123916589Y-72778356D01* X123991400Y-72597746D01* X123991400Y-72402254D01* X124008600Y-72402254D01* X124008600Y-72597746D01* X124083411Y-72778356D01* X124221644Y-72916589D01* X124402254Y-72991400D01* X124597746Y-72991400D01* X124778356Y-72916589D01* X124792691Y-72902254D01* X127508600Y-72902254D01* X127508600Y-73097746D01* X127583411Y-73278356D01* X127721644Y-73416589D01* X127902254Y-73491400D01* X128097746Y-73491400D01* X128278356Y-73416589D01* X128292691Y-73402254D01* X133008600Y-73402254D01* X133008600Y-73597746D01* X133083411Y-73778356D01* X133221644Y-73916589D01* X133402254Y-73991400D01* X133597746Y-73991400D01* X133778356Y-73916589D01* X133916589Y-73778356D01* X133991400Y-73597746D01* X133991400Y-73402254D01* X133916589Y-73221644D01* X133778356Y-73083411D01* X133597746Y-73008600D01* X133402254Y-73008600D01* X133221644Y-73083411D01* X133083411Y-73221644D01* X133008600Y-73402254D01* X128292691Y-73402254D01* X128416589Y-73278356D01* X128491400Y-73097746D01* X128491400Y-72902254D01* X128475186Y-72863108D01* X137611800Y-72863108D01* X137611800Y-73136892D01* X137716572Y-73389834D01* X137910166Y-73583428D01* X138163108Y-73688200D01* X138436892Y-73688200D01* X138689834Y-73583428D01* X138793262Y-73480000D01* X179139502Y-73480000D01* X179227840Y-73924103D01* X179479404Y-74300596D01* X179855897Y-74552160D01* X180187901Y-74618200D01* X180412099Y-74618200D01* X180744103Y-74552160D01* X181120596Y-74300596D01* X181372160Y-73924103D01* X181460498Y-73480000D01* X181679502Y-73480000D01* X181767840Y-73924103D01* X182019404Y-74300596D01* X182395897Y-74552160D01* X182727901Y-74618200D01* X182952099Y-74618200D01* X183284103Y-74552160D01* X183660596Y-74300596D01* X183912160Y-73924103D01* X184000498Y-73480000D01* X183912160Y-73035897D01* X183660596Y-72659404D01* X183284103Y-72407840D01* X182952099Y-72341800D01* X182727901Y-72341800D01* X182395897Y-72407840D01* X182019404Y-72659404D01* X181767840Y-73035897D01* X181679502Y-73480000D01* X181460498Y-73480000D01* X181372160Y-73035897D01* X181120596Y-72659404D01* X180744103Y-72407840D01* X180412099Y-72341800D01* X180187901Y-72341800D01* X179855897Y-72407840D01* X179479404Y-72659404D01* X179227840Y-73035897D01* X179139502Y-73480000D01* X138793262Y-73480000D01* X138883428Y-73389834D01* X138988200Y-73136892D01* X138988200Y-72863108D01* X138883428Y-72610166D01* X138689834Y-72416572D01* X138436892Y-72311800D01* X138163108Y-72311800D01* X137910166Y-72416572D01* X137716572Y-72610166D01* X137611800Y-72863108D01* X128475186Y-72863108D01* X128416589Y-72721644D01* X128278356Y-72583411D01* X128097746Y-72508600D01* X127902254Y-72508600D01* X127721644Y-72583411D01* X127583411Y-72721644D01* X127508600Y-72902254D01* X124792691Y-72902254D01* X124916589Y-72778356D01* X124991400Y-72597746D01* X124991400Y-72402254D01* X124916589Y-72221644D01* X124778356Y-72083411D01* X124597746Y-72008600D01* X124402254Y-72008600D01* X124221644Y-72083411D01* X124083411Y-72221644D01* X124008600Y-72402254D01* X123991400Y-72402254D01* X123916589Y-72221644D01* X123778356Y-72083411D01* X123597746Y-72008600D01* X123402254Y-72008600D01* X123221644Y-72083411D01* X123083411Y-72221644D01* X123008600Y-72402254D01* X122991400Y-72402254D01* X122916589Y-72221644D01* X122778356Y-72083411D01* X122597746Y-72008600D01* X122402254Y-72008600D01* X122221644Y-72083411D01* X122083411Y-72221644D01* X122008600Y-72402254D01* X117991400Y-72402254D01* X117916589Y-72221644D01* X117778356Y-72083411D01* X117597746Y-72008600D01* X117402254Y-72008600D01* X117221644Y-72083411D01* X117083411Y-72221644D01* X117008600Y-72402254D01* X115991400Y-72402254D01* X115916589Y-72221644D01* X115778356Y-72083411D01* X115597746Y-72008600D01* X115402254Y-72008600D01* X115221644Y-72083411D01* X115083411Y-72221644D01* X115008600Y-72402254D01* X111991400Y-72402254D01* X111916589Y-72221644D01* X111778356Y-72083411D01* X111597746Y-72008600D01* X111402254Y-72008600D01* X111221644Y-72083411D01* X111083411Y-72221644D01* X111008600Y-72402254D01* X109991400Y-72402254D01* X109916589Y-72221644D01* X109778356Y-72083411D01* X109597746Y-72008600D01* X109402254Y-72008600D01* X109221644Y-72083411D01* X109083411Y-72221644D01* X109008600Y-72402254D01* X106991400Y-72402254D01* X106916589Y-72221644D01* X106778356Y-72083411D01* X106597746Y-72008600D01* X106402254Y-72008600D01* X106221644Y-72083411D01* X106083411Y-72221644D01* X106008600Y-72402254D01* X105991400Y-72402254D01* X105916589Y-72221644D01* X105778356Y-72083411D01* X105597746Y-72008600D01* X105402254Y-72008600D01* X105221644Y-72083411D01* X105083411Y-72221644D01* X105008600Y-72402254D01* X104991400Y-72402254D01* X104916589Y-72221644D01* X104778356Y-72083411D01* X104597746Y-72008600D01* X104402254Y-72008600D01* X104221644Y-72083411D01* X104083411Y-72221644D01* X104008600Y-72402254D01* X103991400Y-72402254D01* X103916589Y-72221644D01* X103778356Y-72083411D01* X103597746Y-72008600D01* X103402254Y-72008600D01* X103221644Y-72083411D01* X103083411Y-72221644D01* X103008600Y-72402254D01* X102991400Y-72402254D01* X102916589Y-72221644D01* X102778356Y-72083411D01* X102597746Y-72008600D01* X102402254Y-72008600D01* X102221644Y-72083411D01* X102083411Y-72221644D01* X102008600Y-72402254D01* X96356021Y-72402254D01* X96052099Y-72341800D01* X95827901Y-72341800D01* X95495897Y-72407840D01* X95119404Y-72659404D01* X94867840Y-73035897D01* X94779502Y-73480000D01* X94560498Y-73480000D01* X94472160Y-73035897D01* X94220596Y-72659404D01* X93844103Y-72407840D01* X93512099Y-72341800D01* X93287901Y-72341800D01* X92955897Y-72407840D01* X92579404Y-72659404D01* X92327840Y-73035897D01* X92239502Y-73480000D01* X66363200Y-73480000D01* X66363200Y-69544849D01* X66711800Y-69544849D01* X66711800Y-70455151D01* X67060158Y-71296161D01* X67703839Y-71939842D01* X68544849Y-72288200D01* X69455151Y-72288200D01* X70296161Y-71939842D01* X70939842Y-71296161D01* X71288200Y-70455151D01* X71288200Y-69544849D01* X70939842Y-68703839D01* X70809601Y-68573598D01* X72761800Y-68573598D01* X72761800Y-69026402D01* X72935080Y-69444739D01* X73255261Y-69764920D01* X73673598Y-69938200D01* X74126402Y-69938200D01* X74544739Y-69764920D01* X74864920Y-69444739D01* X75038200Y-69026402D01* X75038200Y-68800000D01* X75279502Y-68800000D01* X75367840Y-69244103D01* X75619404Y-69620596D01* X75995897Y-69872160D01* X76327901Y-69938200D01* X76552099Y-69938200D01* X76884103Y-69872160D01* X77260596Y-69620596D01* X77512160Y-69244103D01* X77600498Y-68800000D01* X77819502Y-68800000D01* X77907840Y-69244103D01* X78159404Y-69620596D01* X78535897Y-69872160D01* X78867901Y-69938200D01* X79092099Y-69938200D01* X79424103Y-69872160D01* X79800596Y-69620596D01* X80052160Y-69244103D01* X80140498Y-68800000D01* X80359502Y-68800000D01* X80447840Y-69244103D01* X80699404Y-69620596D01* X81075897Y-69872160D01* X81407901Y-69938200D01* X81632099Y-69938200D01* X81964103Y-69872160D01* X82340596Y-69620596D01* X82592160Y-69244103D01* X82680498Y-68800000D01* X82899502Y-68800000D01* X82987840Y-69244103D01* X83239404Y-69620596D01* X83615897Y-69872160D01* X83947901Y-69938200D01* X84172099Y-69938200D01* X84504103Y-69872160D01* X84880596Y-69620596D01* X84931208Y-69544849D01* X86711800Y-69544849D01* X86711800Y-70455151D01* X87060158Y-71296161D01* X87703839Y-71939842D01* X88544849Y-72288200D01* X89455151Y-72288200D01* X90296161Y-71939842D01* X90939842Y-71296161D01* X91087368Y-70940000D01* X92239502Y-70940000D01* X92327840Y-71384103D01* X92579404Y-71760596D01* X92955897Y-72012160D01* X93287901Y-72078200D01* X93512099Y-72078200D01* X93844103Y-72012160D01* X94220596Y-71760596D01* X94472160Y-71384103D01* X94560498Y-70940000D01* X94779502Y-70940000D01* X94867840Y-71384103D01* X95119404Y-71760596D01* X95495897Y-72012160D01* X95827901Y-72078200D01* X96052099Y-72078200D01* X96384103Y-72012160D01* X96760596Y-71760596D01* X97000031Y-71402254D01* X103008600Y-71402254D01* X103008600Y-71597746D01* X103083411Y-71778356D01* X103221644Y-71916589D01* X103402254Y-71991400D01* X103597746Y-71991400D01* X103778356Y-71916589D01* X103916589Y-71778356D01* X103991400Y-71597746D01* X103991400Y-71402254D01* X104008600Y-71402254D01* X104008600Y-71597746D01* X104083411Y-71778356D01* X104221644Y-71916589D01* X104402254Y-71991400D01* X104597746Y-71991400D01* X104778356Y-71916589D01* X104916589Y-71778356D01* X104991400Y-71597746D01* X104991400Y-71402254D01* X107008600Y-71402254D01* X107008600Y-71597746D01* X107083411Y-71778356D01* X107221644Y-71916589D01* X107402254Y-71991400D01* X107597746Y-71991400D01* X107778356Y-71916589D01* X107916589Y-71778356D01* X107991400Y-71597746D01* X107991400Y-71402254D01* X119008600Y-71402254D01* X119008600Y-71597746D01* X119083411Y-71778356D01* X119221644Y-71916589D01* X119402254Y-71991400D01* X119597746Y-71991400D01* X119778356Y-71916589D01* X119916589Y-71778356D01* X119991400Y-71597746D01* X119991400Y-71402254D01* X121008600Y-71402254D01* X121008600Y-71597746D01* X121083411Y-71778356D01* X121221644Y-71916589D01* X121402254Y-71991400D01* X121597746Y-71991400D01* X121778356Y-71916589D01* X121916589Y-71778356D01* X121991400Y-71597746D01* X121991400Y-71402254D01* X122008600Y-71402254D01* X122008600Y-71597746D01* X122083411Y-71778356D01* X122221644Y-71916589D01* X122402254Y-71991400D01* X122597746Y-71991400D01* X122778356Y-71916589D01* X122916589Y-71778356D01* X122991400Y-71597746D01* X122991400Y-71402254D01* X123008600Y-71402254D01* X123008600Y-71597746D01* X123083411Y-71778356D01* X123221644Y-71916589D01* X123402254Y-71991400D01* X123597746Y-71991400D01* X123778356Y-71916589D01* X123916589Y-71778356D01* X123991400Y-71597746D01* X123991400Y-71402254D01* X124008600Y-71402254D01* X124008600Y-71597746D01* X124083411Y-71778356D01* X124221644Y-71916589D01* X124402254Y-71991400D01* X124597746Y-71991400D01* X124778356Y-71916589D01* X124916589Y-71778356D01* X124991400Y-71597746D01* X124991400Y-71402254D01* X125008600Y-71402254D01* X125008600Y-71597746D01* X125083411Y-71778356D01* X125221644Y-71916589D01* X125402254Y-71991400D01* X125597746Y-71991400D01* X125778356Y-71916589D01* X125916589Y-71778356D01* X125991400Y-71597746D01* X125991400Y-71402254D01* X125916589Y-71221644D01* X125778356Y-71083411D01* X125597746Y-71008600D01* X125402254Y-71008600D01* X125221644Y-71083411D01* X125083411Y-71221644D01* X125008600Y-71402254D01* X124991400Y-71402254D01* X124916589Y-71221644D01* X124778356Y-71083411D01* X124597746Y-71008600D01* X124402254Y-71008600D01* X124221644Y-71083411D01* X124083411Y-71221644D01* X124008600Y-71402254D01* X123991400Y-71402254D01* X123916589Y-71221644D01* X123778356Y-71083411D01* X123597746Y-71008600D01* X123402254Y-71008600D01* X123221644Y-71083411D01* X123083411Y-71221644D01* X123008600Y-71402254D01* X122991400Y-71402254D01* X122916589Y-71221644D01* X122778356Y-71083411D01* X122597746Y-71008600D01* X122402254Y-71008600D01* X122221644Y-71083411D01* X122083411Y-71221644D01* X122008600Y-71402254D01* X121991400Y-71402254D01* X121916589Y-71221644D01* X121778356Y-71083411D01* X121597746Y-71008600D01* X121402254Y-71008600D01* X121221644Y-71083411D01* X121083411Y-71221644D01* X121008600Y-71402254D01* X119991400Y-71402254D01* X119916589Y-71221644D01* X119778356Y-71083411D01* X119597746Y-71008600D01* X119402254Y-71008600D01* X119221644Y-71083411D01* X119083411Y-71221644D01* X119008600Y-71402254D01* X107991400Y-71402254D01* X107916589Y-71221644D01* X107778356Y-71083411D01* X107597746Y-71008600D01* X107402254Y-71008600D01* X107221644Y-71083411D01* X107083411Y-71221644D01* X107008600Y-71402254D01* X104991400Y-71402254D01* X104916589Y-71221644D01* X104778356Y-71083411D01* X104597746Y-71008600D01* X104402254Y-71008600D01* X104221644Y-71083411D01* X104083411Y-71221644D01* X104008600Y-71402254D01* X103991400Y-71402254D01* X103916589Y-71221644D01* X103778356Y-71083411D01* X103597746Y-71008600D01* X103402254Y-71008600D01* X103221644Y-71083411D01* X103083411Y-71221644D01* X103008600Y-71402254D01* X97000031Y-71402254D01* X97012160Y-71384103D01* X97100498Y-70940000D01* X97012160Y-70495897D01* X96949590Y-70402254D01* X102008600Y-70402254D01* X102008600Y-70597746D01* X102083411Y-70778356D01* X102221644Y-70916589D01* X102402254Y-70991400D01* X102597746Y-70991400D01* X102778356Y-70916589D01* X102916589Y-70778356D01* X102991400Y-70597746D01* X102991400Y-70402254D01* X106008600Y-70402254D01* X106008600Y-70597746D01* X106083411Y-70778356D01* X106221644Y-70916589D01* X106402254Y-70991400D01* X106597746Y-70991400D01* X106778356Y-70916589D01* X106916589Y-70778356D01* X106991400Y-70597746D01* X106991400Y-70402254D01* X107008600Y-70402254D01* X107008600Y-70597746D01* X107083411Y-70778356D01* X107221644Y-70916589D01* X107402254Y-70991400D01* X107597746Y-70991400D01* X107778356Y-70916589D01* X107916589Y-70778356D01* X107991400Y-70597746D01* X107991400Y-70402254D01* X108008600Y-70402254D01* X108008600Y-70597746D01* X108083411Y-70778356D01* X108221644Y-70916589D01* X108402254Y-70991400D01* X108597746Y-70991400D01* X108778356Y-70916589D01* X108916589Y-70778356D01* X108991400Y-70597746D01* X108991400Y-70402254D01* X111008600Y-70402254D01* X111008600Y-70597746D01* X111083411Y-70778356D01* X111221644Y-70916589D01* X111402254Y-70991400D01* X111597746Y-70991400D01* X111778356Y-70916589D01* X111916589Y-70778356D01* X111991400Y-70597746D01* X111991400Y-70402254D01* X113008600Y-70402254D01* X113008600Y-70597746D01* X113083411Y-70778356D01* X113221644Y-70916589D01* X113402254Y-70991400D01* X113597746Y-70991400D01* X113778356Y-70916589D01* X113916589Y-70778356D01* X113991400Y-70597746D01* X113991400Y-70402254D01* X115008600Y-70402254D01* X115008600Y-70597746D01* X115083411Y-70778356D01* X115221644Y-70916589D01* X115402254Y-70991400D01* X115597746Y-70991400D01* X115778356Y-70916589D01* X115916589Y-70778356D01* X115991400Y-70597746D01* X115991400Y-70402254D01* X117008600Y-70402254D01* X117008600Y-70597746D01* X117083411Y-70778356D01* X117221644Y-70916589D01* X117402254Y-70991400D01* X117597746Y-70991400D01* X117778356Y-70916589D01* X117916589Y-70778356D01* X117991400Y-70597746D01* X117991400Y-70402254D01* X121008600Y-70402254D01* X121008600Y-70597746D01* X121083411Y-70778356D01* X121221644Y-70916589D01* X121402254Y-70991400D01* X121597746Y-70991400D01* X121778356Y-70916589D01* X121916589Y-70778356D01* X121991400Y-70597746D01* X121991400Y-70402254D01* X122008600Y-70402254D01* X122008600Y-70597746D01* X122083411Y-70778356D01* X122221644Y-70916589D01* X122402254Y-70991400D01* X122597746Y-70991400D01* X122778356Y-70916589D01* X122916589Y-70778356D01* X122991400Y-70597746D01* X122991400Y-70402254D01* X124008600Y-70402254D01* X124008600Y-70597746D01* X124083411Y-70778356D01* X124221644Y-70916589D01* X124402254Y-70991400D01* X124597746Y-70991400D01* X124778356Y-70916589D01* X124916589Y-70778356D01* X124991400Y-70597746D01* X124991400Y-70402254D01* X125008600Y-70402254D01* X125008600Y-70597746D01* X125083411Y-70778356D01* X125221644Y-70916589D01* X125402254Y-70991400D01* X125597746Y-70991400D01* X125778356Y-70916589D01* X125836265Y-70858680D01* X134786800Y-70858680D01* X134786800Y-71341320D01* X134971499Y-71787223D01* X135312777Y-72128501D01* X135758680Y-72313200D01* X136241320Y-72313200D01* X136687223Y-72128501D01* X136748574Y-72067150D01* X165382800Y-72067150D01* X165382800Y-72282850D01* X165465345Y-72482131D01* X165617869Y-72634655D01* X165817150Y-72717200D01* X166032850Y-72717200D01* X166232131Y-72634655D01* X166384655Y-72482131D01* X166467200Y-72282850D01* X166467200Y-72067150D01* X166384655Y-71867869D01* X166232131Y-71715345D01* X166032850Y-71632800D01* X165817150Y-71632800D01* X165617869Y-71715345D01* X165465345Y-71867869D01* X165382800Y-72067150D01* X136748574Y-72067150D01* X137028501Y-71787223D01* X137192227Y-71391951D01* X147956800Y-71391951D01* X147956800Y-71608049D01* X148039497Y-71807698D01* X148192302Y-71960503D01* X148391951Y-72043200D01* X148608049Y-72043200D01* X148807698Y-71960503D01* X148960503Y-71807698D01* X149043200Y-71608049D01* X149043200Y-71391951D01* X149001779Y-71291951D01* X150556800Y-71291951D01* X150556800Y-71508049D01* X150639497Y-71707698D01* X150792302Y-71860503D01* X150991951Y-71943200D01* X151208049Y-71943200D01* X151407698Y-71860503D01* X151560503Y-71707698D01* X151643200Y-71508049D01* X151643200Y-71291951D01* X151560503Y-71092302D01* X151407698Y-70939497D01* X151208049Y-70856800D01* X150991951Y-70856800D01* X150792302Y-70939497D01* X150639497Y-71092302D01* X150556800Y-71291951D01* X149001779Y-71291951D01* X148960503Y-71192302D01* X148807698Y-71039497D01* X148608049Y-70956800D01* X148391951Y-70956800D01* X148192302Y-71039497D01* X148039497Y-71192302D01* X147956800Y-71391951D01* X137192227Y-71391951D01* X137213200Y-71341320D01* X137213200Y-70858680D01* X137028501Y-70412777D01* X136687223Y-70071499D01* X136241320Y-69886800D01* X135758680Y-69886800D01* X135312777Y-70071499D01* X134971499Y-70412777D01* X134786800Y-70858680D01* X125836265Y-70858680D01* X125916589Y-70778356D01* X125991400Y-70597746D01* X125991400Y-70402254D01* X125916589Y-70221644D01* X125778356Y-70083411D01* X125597746Y-70008600D01* X125402254Y-70008600D01* X125221644Y-70083411D01* X125083411Y-70221644D01* X125008600Y-70402254D01* X124991400Y-70402254D01* X124916589Y-70221644D01* X124778356Y-70083411D01* X124597746Y-70008600D01* X124402254Y-70008600D01* X124221644Y-70083411D01* X124083411Y-70221644D01* X124008600Y-70402254D01* X122991400Y-70402254D01* X122916589Y-70221644D01* X122778356Y-70083411D01* X122597746Y-70008600D01* X122402254Y-70008600D01* X122221644Y-70083411D01* X122083411Y-70221644D01* X122008600Y-70402254D01* X121991400Y-70402254D01* X121916589Y-70221644D01* X121778356Y-70083411D01* X121597746Y-70008600D01* X121402254Y-70008600D01* X121221644Y-70083411D01* X121083411Y-70221644D01* X121008600Y-70402254D01* X117991400Y-70402254D01* X117916589Y-70221644D01* X117778356Y-70083411D01* X117597746Y-70008600D01* X117402254Y-70008600D01* X117221644Y-70083411D01* X117083411Y-70221644D01* X117008600Y-70402254D01* X115991400Y-70402254D01* X115916589Y-70221644D01* X115778356Y-70083411D01* X115597746Y-70008600D01* X115402254Y-70008600D01* X115221644Y-70083411D01* X115083411Y-70221644D01* X115008600Y-70402254D01* X113991400Y-70402254D01* X113916589Y-70221644D01* X113778356Y-70083411D01* X113597746Y-70008600D01* X113402254Y-70008600D01* X113221644Y-70083411D01* X113083411Y-70221644D01* X113008600Y-70402254D01* X111991400Y-70402254D01* X111916589Y-70221644D01* X111778356Y-70083411D01* X111597746Y-70008600D01* X111402254Y-70008600D01* X111221644Y-70083411D01* X111083411Y-70221644D01* X111008600Y-70402254D01* X108991400Y-70402254D01* X108916589Y-70221644D01* X108778356Y-70083411D01* X108597746Y-70008600D01* X108402254Y-70008600D01* X108221644Y-70083411D01* X108083411Y-70221644D01* X108008600Y-70402254D01* X107991400Y-70402254D01* X107916589Y-70221644D01* X107778356Y-70083411D01* X107597746Y-70008600D01* X107402254Y-70008600D01* X107221644Y-70083411D01* X107083411Y-70221644D01* X107008600Y-70402254D01* X106991400Y-70402254D01* X106916589Y-70221644D01* X106778356Y-70083411D01* X106597746Y-70008600D01* X106402254Y-70008600D01* X106221644Y-70083411D01* X106083411Y-70221644D01* X106008600Y-70402254D01* X102991400Y-70402254D01* X102916589Y-70221644D01* X102778356Y-70083411D01* X102597746Y-70008600D01* X102402254Y-70008600D01* X102221644Y-70083411D01* X102083411Y-70221644D01* X102008600Y-70402254D01* X96949590Y-70402254D01* X96760596Y-70119404D01* X96384103Y-69867840D01* X96052099Y-69801800D01* X95827901Y-69801800D01* X95495897Y-69867840D01* X95119404Y-70119404D01* X94867840Y-70495897D01* X94779502Y-70940000D01* X94560498Y-70940000D01* X94472160Y-70495897D01* X94220596Y-70119404D01* X93844103Y-69867840D01* X93512099Y-69801800D01* X93287901Y-69801800D01* X92955897Y-69867840D01* X92579404Y-70119404D01* X92327840Y-70495897D01* X92239502Y-70940000D01* X91087368Y-70940000D01* X91288200Y-70455151D01* X91288200Y-69544849D01* X90939842Y-68703839D01* X90296161Y-68060158D01* X89455151Y-67711800D01* X88544849Y-67711800D01* X87703839Y-68060158D01* X87060158Y-68703839D01* X86711800Y-69544849D01* X84931208Y-69544849D01* X85132160Y-69244103D01* X85220498Y-68800000D01* X85132160Y-68355897D01* X84880596Y-67979404D01* X84504103Y-67727840D01* X84172099Y-67661800D01* X83947901Y-67661800D01* X83615897Y-67727840D01* X83239404Y-67979404D01* X82987840Y-68355897D01* X82899502Y-68800000D01* X82680498Y-68800000D01* X82592160Y-68355897D01* X82340596Y-67979404D01* X81964103Y-67727840D01* X81632099Y-67661800D01* X81407901Y-67661800D01* X81075897Y-67727840D01* X80699404Y-67979404D01* X80447840Y-68355897D01* X80359502Y-68800000D01* X80140498Y-68800000D01* X80052160Y-68355897D01* X79800596Y-67979404D01* X79424103Y-67727840D01* X79092099Y-67661800D01* X78867901Y-67661800D01* X78535897Y-67727840D01* X78159404Y-67979404D01* X77907840Y-68355897D01* X77819502Y-68800000D01* X77600498Y-68800000D01* X77512160Y-68355897D01* X77260596Y-67979404D01* X76884103Y-67727840D01* X76552099Y-67661800D01* X76327901Y-67661800D01* X75995897Y-67727840D01* X75619404Y-67979404D01* X75367840Y-68355897D01* X75279502Y-68800000D01* X75038200Y-68800000D01* X75038200Y-68573598D01* X74864920Y-68155261D01* X74544739Y-67835080D01* X74126402Y-67661800D01* X73673598Y-67661800D01* X73255261Y-67835080D01* X72935080Y-68155261D01* X72761800Y-68573598D01* X70809601Y-68573598D01* X70296161Y-68060158D01* X69455151Y-67711800D01* X68544849Y-67711800D01* X67703839Y-68060158D01* X67060158Y-68703839D01* X66711800Y-69544849D01* X66363200Y-69544849D01* X66363200Y-67363200D01* X92928796Y-67363200D01* X92755261Y-67435080D01* X92435080Y-67755261D01* X92261800Y-68173598D01* X92261800Y-68626402D01* X92435080Y-69044739D01* X92755261Y-69364920D01* X93173598Y-69538200D01* X93626402Y-69538200D01* X94044739Y-69364920D01* X94364920Y-69044739D01* X94538200Y-68626402D01* X94538200Y-68400000D01* X94779502Y-68400000D01* X94867840Y-68844103D01* X95119404Y-69220596D01* X95495897Y-69472160D01* X95827901Y-69538200D01* X96052099Y-69538200D01* X96384103Y-69472160D01* X96488724Y-69402254D01* X104008600Y-69402254D01* X104008600Y-69597746D01* X104083411Y-69778356D01* X104221644Y-69916589D01* X104402254Y-69991400D01* X104597746Y-69991400D01* X104778356Y-69916589D01* X104916589Y-69778356D01* X104991400Y-69597746D01* X104991400Y-69402254D01* X106008600Y-69402254D01* X106008600Y-69597746D01* X106083411Y-69778356D01* X106221644Y-69916589D01* X106402254Y-69991400D01* X106597746Y-69991400D01* X106778356Y-69916589D01* X106916589Y-69778356D01* X106991400Y-69597746D01* X106991400Y-69402254D01* X108008600Y-69402254D01* X108008600Y-69597746D01* X108083411Y-69778356D01* X108221644Y-69916589D01* X108402254Y-69991400D01* X108597746Y-69991400D01* X108778356Y-69916589D01* X108916589Y-69778356D01* X108991400Y-69597746D01* X108991400Y-69402254D01* X111008600Y-69402254D01* X111008600Y-69597746D01* X111083411Y-69778356D01* X111221644Y-69916589D01* X111402254Y-69991400D01* X111597746Y-69991400D01* X111778356Y-69916589D01* X111916589Y-69778356D01* X111991400Y-69597746D01* X111991400Y-69402254D01* X113008600Y-69402254D01* X113008600Y-69597746D01* X113083411Y-69778356D01* X113221644Y-69916589D01* X113402254Y-69991400D01* X113597746Y-69991400D01* X113778356Y-69916589D01* X113916589Y-69778356D01* X113991400Y-69597746D01* X113991400Y-69402254D01* X119008600Y-69402254D01* X119008600Y-69597746D01* X119083411Y-69778356D01* X119221644Y-69916589D01* X119402254Y-69991400D01* X119597746Y-69991400D01* X119778356Y-69916589D01* X119916589Y-69778356D01* X119991400Y-69597746D01* X119991400Y-69402254D01* X124008600Y-69402254D01* X124008600Y-69597746D01* X124083411Y-69778356D01* X124221644Y-69916589D01* X124402254Y-69991400D01* X124597746Y-69991400D01* X124778356Y-69916589D01* X124916589Y-69778356D01* X124991400Y-69597746D01* X124991400Y-69563108D01* X142411800Y-69563108D01* X142411800Y-69836892D01* X142516572Y-70089834D01* X142710166Y-70283428D01* X142963108Y-70388200D01* X143236892Y-70388200D01* X143489834Y-70283428D01* X143683428Y-70089834D01* X143788200Y-69836892D01* X143788200Y-69563108D01* X143683428Y-69310166D01* X143489834Y-69116572D01* X143236892Y-69011800D01* X142963108Y-69011800D01* X142710166Y-69116572D01* X142516572Y-69310166D01* X142411800Y-69563108D01* X124991400Y-69563108D01* X124991400Y-69402254D01* X124916589Y-69221644D01* X124778356Y-69083411D01* X124597746Y-69008600D01* X124402254Y-69008600D01* X124221644Y-69083411D01* X124083411Y-69221644D01* X124008600Y-69402254D01* X119991400Y-69402254D01* X119916589Y-69221644D01* X119778356Y-69083411D01* X119597746Y-69008600D01* X119402254Y-69008600D01* X119221644Y-69083411D01* X119083411Y-69221644D01* X119008600Y-69402254D01* X113991400Y-69402254D01* X113916589Y-69221644D01* X113778356Y-69083411D01* X113597746Y-69008600D01* X113402254Y-69008600D01* X113221644Y-69083411D01* X113083411Y-69221644D01* X113008600Y-69402254D01* X111991400Y-69402254D01* X111916589Y-69221644D01* X111778356Y-69083411D01* X111597746Y-69008600D01* X111402254Y-69008600D01* X111221644Y-69083411D01* X111083411Y-69221644D01* X111008600Y-69402254D01* X108991400Y-69402254D01* X108916589Y-69221644D01* X108778356Y-69083411D01* X108597746Y-69008600D01* X108402254Y-69008600D01* X108221644Y-69083411D01* X108083411Y-69221644D01* X108008600Y-69402254D01* X106991400Y-69402254D01* X106916589Y-69221644D01* X106778356Y-69083411D01* X106597746Y-69008600D01* X106402254Y-69008600D01* X106221644Y-69083411D01* X106083411Y-69221644D01* X106008600Y-69402254D01* X104991400Y-69402254D01* X104916589Y-69221644D01* X104778356Y-69083411D01* X104597746Y-69008600D01* X104402254Y-69008600D01* X104221644Y-69083411D01* X104083411Y-69221644D01* X104008600Y-69402254D01* X96488724Y-69402254D01* X96760596Y-69220596D01* X97012160Y-68844103D01* X97042385Y-68692150D01* X98057800Y-68692150D01* X98057800Y-68907850D01* X98140345Y-69107131D01* X98292869Y-69259655D01* X98492150Y-69342200D01* X98707850Y-69342200D01* X98907131Y-69259655D01* X99059655Y-69107131D01* X99142200Y-68907850D01* X99142200Y-68692150D01* X99059655Y-68492869D01* X98958737Y-68391951D01* X100956800Y-68391951D01* X100956800Y-68608049D01* X101039497Y-68807698D01* X101192302Y-68960503D01* X101391951Y-69043200D01* X101608049Y-69043200D01* X101807698Y-68960503D01* X101960503Y-68807698D01* X102043200Y-68608049D01* X102043200Y-68402254D01* X106008600Y-68402254D01* X106008600Y-68597746D01* X106083411Y-68778356D01* X106221644Y-68916589D01* X106402254Y-68991400D01* X106597746Y-68991400D01* X106778356Y-68916589D01* X106916589Y-68778356D01* X106991400Y-68597746D01* X106991400Y-68402254D01* X107008600Y-68402254D01* X107008600Y-68597746D01* X107083411Y-68778356D01* X107221644Y-68916589D01* X107402254Y-68991400D01* X107597746Y-68991400D01* X107778356Y-68916589D01* X107916589Y-68778356D01* X107991400Y-68597746D01* X107991400Y-68402254D01* X124008600Y-68402254D01* X124008600Y-68597746D01* X124083411Y-68778356D01* X124221644Y-68916589D01* X124402254Y-68991400D01* X124597746Y-68991400D01* X124778356Y-68916589D01* X124916589Y-68778356D01* X124991400Y-68597746D01* X124991400Y-68402254D01* X124916589Y-68221644D01* X124778356Y-68083411D01* X124597746Y-68008600D01* X124402254Y-68008600D01* X124221644Y-68083411D01* X124083411Y-68221644D01* X124008600Y-68402254D01* X107991400Y-68402254D01* X107916589Y-68221644D01* X107778356Y-68083411D01* X107597746Y-68008600D01* X107402254Y-68008600D01* X107221644Y-68083411D01* X107083411Y-68221644D01* X107008600Y-68402254D01* X106991400Y-68402254D01* X106916589Y-68221644D01* X106778356Y-68083411D01* X106597746Y-68008600D01* X106402254Y-68008600D01* X106221644Y-68083411D01* X106083411Y-68221644D01* X106008600Y-68402254D01* X102043200Y-68402254D01* X102043200Y-68391951D01* X101960503Y-68192302D01* X101807698Y-68039497D01* X101608049Y-67956800D01* X101391951Y-67956800D01* X101192302Y-68039497D01* X101039497Y-68192302D01* X100956800Y-68391951D01* X98958737Y-68391951D01* X98907131Y-68340345D01* X98707850Y-68257800D01* X98492150Y-68257800D01* X98292869Y-68340345D01* X98140345Y-68492869D01* X98057800Y-68692150D01* X97042385Y-68692150D01* X97100498Y-68400000D01* X97012160Y-67955897D01* X96835798Y-67691951D01* X104456800Y-67691951D01* X104456800Y-67908049D01* X104539497Y-68107698D01* X104692302Y-68260503D01* X104891951Y-68343200D01* X105108049Y-68343200D01* X105307698Y-68260503D01* X105460503Y-68107698D01* X105543200Y-67908049D01* X105543200Y-67791951D01* X141056800Y-67791951D01* X141056800Y-68008049D01* X141139497Y-68207698D01* X141292302Y-68360503D01* X141491951Y-68443200D01* X141708049Y-68443200D01* X141907698Y-68360503D01* X142060503Y-68207698D01* X142143200Y-68008049D01* X142143200Y-67791951D01* X142060503Y-67592302D01* X141907698Y-67439497D01* X141708049Y-67356800D01* X141491951Y-67356800D01* X141292302Y-67439497D01* X141139497Y-67592302D01* X141056800Y-67791951D01* X105543200Y-67791951D01* X105543200Y-67691951D01* X105460503Y-67492302D01* X105307698Y-67339497D01* X105108049Y-67256800D01* X104891951Y-67256800D01* X104692302Y-67339497D01* X104539497Y-67492302D01* X104456800Y-67691951D01* X96835798Y-67691951D01* X96760596Y-67579404D01* X96384103Y-67327840D01* X96052099Y-67261800D01* X95827901Y-67261800D01* X95495897Y-67327840D01* X95119404Y-67579404D01* X94867840Y-67955897D01* X94779502Y-68400000D01* X94538200Y-68400000D01* X94538200Y-68173598D01* X94364920Y-67755261D01* X94044739Y-67435080D01* X93871204Y-67363200D01* X94535769Y-67363200D01* X94570854Y-67356221D01* X94570856Y-67356221D01* X94762199Y-67318161D01* X94762200Y-67318161D01* X94816431Y-67295698D01* X94893125Y-67263930D01* X94893126Y-67263929D01* X95055337Y-67155542D01* X95155544Y-67055335D01* X95155545Y-67055332D01* X95263929Y-66893127D01* X95318161Y-66762200D01* X95318161Y-66762198D01* X95352024Y-66591951D01* X135656800Y-66591951D01* X135656800Y-66808049D01* X135739497Y-67007698D01* X135892302Y-67160503D01* X136091951Y-67243200D01* X136308049Y-67243200D01* X136431775Y-67191951D01* X144156800Y-67191951D01* X144156800Y-67408049D01* X144239497Y-67607698D01* X144392302Y-67760503D01* X144591951Y-67843200D01* X144808049Y-67843200D01* X145007698Y-67760503D01* X145160503Y-67607698D01* X145243200Y-67408049D01* X145243200Y-67191951D01* X145160503Y-66992302D01* X145007698Y-66839497D01* X144808049Y-66756800D01* X144591951Y-66756800D01* X144392302Y-66839497D01* X144239497Y-66992302D01* X144156800Y-67191951D01* X136431775Y-67191951D01* X136507698Y-67160503D01* X136660503Y-67007698D01* X136743200Y-66808049D01* X136743200Y-66591951D01* X136660503Y-66392302D01* X136507698Y-66239497D01* X136308049Y-66156800D01* X136091951Y-66156800D01* X135892302Y-66239497D01* X135739497Y-66392302D01* X135656800Y-66591951D01* X95352024Y-66591951D01* X95356221Y-66570856D01* X95356221Y-66570854D01* X95363200Y-66535769D01* X95363200Y-64843217D01* X95411800Y-64843217D01* X95411800Y-65156783D01* X95531796Y-65446480D01* X95753520Y-65668204D01* X96043217Y-65788200D01* X96356783Y-65788200D01* X96646480Y-65668204D01* X96839529Y-65475155D01* X96901740Y-65568260D01* X97162460Y-65742467D01* X97392373Y-65788200D01* X97547627Y-65788200D01* X97777540Y-65742467D01* X98038260Y-65568260D01* X98105000Y-65468376D01* X98171740Y-65568260D01* X98432460Y-65742467D01* X98662373Y-65788200D01* X98817627Y-65788200D01* X99047540Y-65742467D01* X99308260Y-65568260D01* X99375000Y-65468376D01* X99441740Y-65568260D01* X99702460Y-65742467D01* X99932373Y-65788200D01* X100087627Y-65788200D01* X100317540Y-65742467D01* X100578260Y-65568260D01* X100645000Y-65468376D01* X100711740Y-65568260D01* X100972460Y-65742467D01* X101202373Y-65788200D01* X101357627Y-65788200D01* X101587540Y-65742467D01* X101848260Y-65568260D01* X101915000Y-65468376D01* X101981740Y-65568260D01* X102242460Y-65742467D01* X102472373Y-65788200D01* X102627627Y-65788200D01* X102857540Y-65742467D01* X103118260Y-65568260D01* X103185000Y-65468376D01* X103251740Y-65568260D01* X103512460Y-65742467D01* X103742373Y-65788200D01* X103897627Y-65788200D01* X104127540Y-65742467D01* X104388260Y-65568260D01* X104455000Y-65468376D01* X104521740Y-65568260D01* X104782460Y-65742467D01* X105012373Y-65788200D01* X105167627Y-65788200D01* X105397540Y-65742467D01* X105658260Y-65568260D01* X105725000Y-65468376D01* X105791740Y-65568260D01* X106052460Y-65742467D01* X106282373Y-65788200D01* X106437627Y-65788200D01* X106667540Y-65742467D01* X106928260Y-65568260D01* X106995000Y-65468376D01* X107061740Y-65568260D01* X107322460Y-65742467D01* X107552373Y-65788200D01* X107707627Y-65788200D01* X107937540Y-65742467D01* X108198260Y-65568260D01* X108265000Y-65468376D01* X108331740Y-65568260D01* X108592460Y-65742467D01* X108822373Y-65788200D01* X108977627Y-65788200D01* X109207540Y-65742467D01* X109468260Y-65568260D01* X109535000Y-65468376D01* X109601740Y-65568260D01* X109862460Y-65742467D01* X110092373Y-65788200D01* X110247627Y-65788200D01* X110477540Y-65742467D01* X110738260Y-65568260D01* X110805000Y-65468376D01* X110871740Y-65568260D01* X111132460Y-65742467D01* X111362373Y-65788200D01* X111517627Y-65788200D01* X111747540Y-65742467D01* X112008260Y-65568260D01* X112075000Y-65468376D01* X112141740Y-65568260D01* X112402460Y-65742467D01* X112632373Y-65788200D01* X112787627Y-65788200D01* X113017540Y-65742467D01* X113278260Y-65568260D01* X113345000Y-65468376D01* X113411740Y-65568260D01* X113672460Y-65742467D01* X113902373Y-65788200D01* X114057627Y-65788200D01* X114287540Y-65742467D01* X114548260Y-65568260D01* X114615000Y-65468376D01* X114681740Y-65568260D01* X114942460Y-65742467D01* X115172373Y-65788200D01* X115327627Y-65788200D01* X115557540Y-65742467D01* X115818260Y-65568260D01* X115885000Y-65468376D01* X115951740Y-65568260D01* X116212460Y-65742467D01* X116442373Y-65788200D01* X116597627Y-65788200D01* X116827540Y-65742467D01* X117088260Y-65568260D01* X117155000Y-65468376D01* X117221740Y-65568260D01* X117482460Y-65742467D01* X117712373Y-65788200D01* X117867627Y-65788200D01* X118097540Y-65742467D01* X118358260Y-65568260D01* X118425000Y-65468376D01* X118491740Y-65568260D01* X118752460Y-65742467D01* X118982373Y-65788200D01* X119137627Y-65788200D01* X119367540Y-65742467D01* X119628260Y-65568260D01* X119695000Y-65468376D01* X119761740Y-65568260D01* X120022460Y-65742467D01* X120252373Y-65788200D01* X120407627Y-65788200D01* X120637540Y-65742467D01* X120898260Y-65568260D01* X120965000Y-65468376D01* X121031740Y-65568260D01* X121292460Y-65742467D01* X121522373Y-65788200D01* X121677627Y-65788200D01* X121907540Y-65742467D01* X122168260Y-65568260D01* X122235000Y-65468376D01* X122301740Y-65568260D01* X122562460Y-65742467D01* X122792373Y-65788200D01* X122947627Y-65788200D01* X123177540Y-65742467D01* X123438260Y-65568260D01* X123505000Y-65468376D01* X123571740Y-65568260D01* X123832460Y-65742467D01* X124062373Y-65788200D01* X124217627Y-65788200D01* X124447540Y-65742467D01* X124708260Y-65568260D01* X124775000Y-65468376D01* X124841740Y-65568260D01* X125102460Y-65742467D01* X125332373Y-65788200D01* X125487627Y-65788200D01* X125717540Y-65742467D01* X125978260Y-65568260D01* X126045000Y-65468376D01* X126111740Y-65568260D01* X126372460Y-65742467D01* X126602373Y-65788200D01* X126757627Y-65788200D01* X126987540Y-65742467D01* X127248260Y-65568260D01* X127315000Y-65468376D01* X127381740Y-65568260D01* X127642460Y-65742467D01* X127872373Y-65788200D01* X128027627Y-65788200D01* X128257540Y-65742467D01* X128518260Y-65568260D01* X128585000Y-65468376D01* X128651740Y-65568260D01* X128912460Y-65742467D01* X129142373Y-65788200D01* X129297627Y-65788200D01* X129527540Y-65742467D01* X129788260Y-65568260D01* X129855000Y-65468376D01* X129921740Y-65568260D01* X130182460Y-65742467D01* X130412373Y-65788200D01* X130567627Y-65788200D01* X130797540Y-65742467D01* X131058260Y-65568260D01* X131125000Y-65468376D01* X131191740Y-65568260D01* X131452460Y-65742467D01* X131682373Y-65788200D01* X131837627Y-65788200D01* X132067540Y-65742467D01* X132328260Y-65568260D01* X132395000Y-65468376D01* X132461740Y-65568260D01* X132722460Y-65742467D01* X132952373Y-65788200D01* X133107627Y-65788200D01* X133337540Y-65742467D01* X133598260Y-65568260D01* X133772467Y-65307540D01* X133833641Y-65000000D01* X133792258Y-64791951D01* X135656800Y-64791951D01* X135656800Y-65008049D01* X135739497Y-65207698D01* X135892302Y-65360503D01* X136091951Y-65443200D01* X136308049Y-65443200D01* X136507698Y-65360503D01* X136618201Y-65250000D01* X139306154Y-65250000D01* X139306154Y-66150000D01* X139343746Y-66338987D01* X139450798Y-66499202D01* X139611013Y-66606254D01* X139800000Y-66643846D01* X140200000Y-66643846D01* X140388987Y-66606254D01* X140549202Y-66499202D01* X140656254Y-66338987D01* X140662211Y-66309038D01* X140753837Y-66446164D01* X140981479Y-66598270D01* X141250000Y-66651682D01* X141518522Y-66598270D01* X141746164Y-66446164D01* X141875000Y-66253348D01* X142003837Y-66446164D01* X142231479Y-66598270D01* X142500000Y-66651682D01* X142768522Y-66598270D01* X142996164Y-66446164D01* X143125000Y-66253348D01* X143253837Y-66446164D01* X143481479Y-66598270D01* X143750000Y-66651682D01* X144018522Y-66598270D01* X144246164Y-66446164D01* X144398270Y-66218522D01* X144438200Y-66017779D01* X144438200Y-65382221D01* X144398270Y-65181478D01* X144246163Y-64953836D01* X144018521Y-64801730D01* X143750000Y-64748318D01* X143481478Y-64801730D01* X143253836Y-64953837D01* X143125000Y-65146653D01* X142996163Y-64953836D01* X142768521Y-64801730D01* X142500000Y-64748318D01* X142231478Y-64801730D01* X142003836Y-64953837D01* X141875000Y-65146653D01* X141746163Y-64953836D01* X141518521Y-64801730D01* X141250000Y-64748318D01* X140981478Y-64801730D01* X140753836Y-64953837D01* X140662211Y-65090963D01* X140656254Y-65061013D01* X140549202Y-64900798D01* X140388987Y-64793746D01* X140200000Y-64756154D01* X139800000Y-64756154D01* X139611013Y-64793746D01* X139450798Y-64900798D01* X139343746Y-65061013D01* X139306154Y-65250000D01* X136618201Y-65250000D01* X136660503Y-65207698D01* X136743200Y-65008049D01* X136743200Y-64791951D01* X136660503Y-64592302D01* X136507698Y-64439497D01* X136308049Y-64356800D01* X136091951Y-64356800D01* X135892302Y-64439497D01* X135739497Y-64592302D01* X135656800Y-64791951D01* X133792258Y-64791951D01* X133772467Y-64692460D01* X133598260Y-64431740D01* X133337540Y-64257533D01* X133107627Y-64211800D01* X132952373Y-64211800D01* X132722460Y-64257533D01* X132461740Y-64431740D01* X132395000Y-64531624D01* X132328260Y-64431740D01* X132067540Y-64257533D01* X131837627Y-64211800D01* X131682373Y-64211800D01* X131452460Y-64257533D01* X131191740Y-64431740D01* X131125000Y-64531624D01* X131058260Y-64431740D01* X130797540Y-64257533D01* X130567627Y-64211800D01* X130412373Y-64211800D01* X130182460Y-64257533D01* X129921740Y-64431740D01* X129855000Y-64531624D01* X129788260Y-64431740D01* X129527540Y-64257533D01* X129297627Y-64211800D01* X129142373Y-64211800D01* X128912460Y-64257533D01* X128651740Y-64431740D01* X128585000Y-64531624D01* X128518260Y-64431740D01* X128257540Y-64257533D01* X128027627Y-64211800D01* X127872373Y-64211800D01* X127642460Y-64257533D01* X127381740Y-64431740D01* X127315000Y-64531624D01* X127248260Y-64431740D01* X126987540Y-64257533D01* X126757627Y-64211800D01* X126602373Y-64211800D01* X126372460Y-64257533D01* X126111740Y-64431740D01* X126045000Y-64531624D01* X125978260Y-64431740D01* X125717540Y-64257533D01* X125487627Y-64211800D01* X125332373Y-64211800D01* X125102460Y-64257533D01* X124841740Y-64431740D01* X124775000Y-64531624D01* X124708260Y-64431740D01* X124447540Y-64257533D01* X124217627Y-64211800D01* X124062373Y-64211800D01* X123832460Y-64257533D01* X123571740Y-64431740D01* X123505000Y-64531624D01* X123438260Y-64431740D01* X123177540Y-64257533D01* X122947627Y-64211800D01* X122792373Y-64211800D01* X122562460Y-64257533D01* X122301740Y-64431740D01* X122235000Y-64531624D01* X122168260Y-64431740D01* X121907540Y-64257533D01* X121677627Y-64211800D01* X121522373Y-64211800D01* X121292460Y-64257533D01* X121031740Y-64431740D01* X120965000Y-64531624D01* X120898260Y-64431740D01* X120637540Y-64257533D01* X120407627Y-64211800D01* X120252373Y-64211800D01* X120022460Y-64257533D01* X119761740Y-64431740D01* X119695000Y-64531624D01* X119628260Y-64431740D01* X119367540Y-64257533D01* X119137627Y-64211800D01* X118982373Y-64211800D01* X118752460Y-64257533D01* X118491740Y-64431740D01* X118425000Y-64531624D01* X118358260Y-64431740D01* X118097540Y-64257533D01* X117867627Y-64211800D01* X117712373Y-64211800D01* X117482460Y-64257533D01* X117221740Y-64431740D01* X117155000Y-64531624D01* X117088260Y-64431740D01* X116827540Y-64257533D01* X116597627Y-64211800D01* X116442373Y-64211800D01* X116212460Y-64257533D01* X115951740Y-64431740D01* X115885000Y-64531624D01* X115818260Y-64431740D01* X115557540Y-64257533D01* X115327627Y-64211800D01* X115172373Y-64211800D01* X114942460Y-64257533D01* X114681740Y-64431740D01* X114615000Y-64531624D01* X114548260Y-64431740D01* X114287540Y-64257533D01* X114057627Y-64211800D01* X113902373Y-64211800D01* X113672460Y-64257533D01* X113411740Y-64431740D01* X113345000Y-64531624D01* X113278260Y-64431740D01* X113017540Y-64257533D01* X112787627Y-64211800D01* X112632373Y-64211800D01* X112402460Y-64257533D01* X112141740Y-64431740D01* X112075000Y-64531624D01* X112008260Y-64431740D01* X111747540Y-64257533D01* X111517627Y-64211800D01* X111362373Y-64211800D01* X111132460Y-64257533D01* X110871740Y-64431740D01* X110805000Y-64531624D01* X110738260Y-64431740D01* X110477540Y-64257533D01* X110247627Y-64211800D01* X110092373Y-64211800D01* X109862460Y-64257533D01* X109601740Y-64431740D01* X109535000Y-64531624D01* X109468260Y-64431740D01* X109207540Y-64257533D01* X108977627Y-64211800D01* X108822373Y-64211800D01* X108592460Y-64257533D01* X108331740Y-64431740D01* X108265000Y-64531624D01* X108198260Y-64431740D01* X107937540Y-64257533D01* X107707627Y-64211800D01* X107552373Y-64211800D01* X107322460Y-64257533D01* X107061740Y-64431740D01* X106995000Y-64531624D01* X106928260Y-64431740D01* X106667540Y-64257533D01* X106437627Y-64211800D01* X106282373Y-64211800D01* X106052460Y-64257533D01* X105791740Y-64431740D01* X105725000Y-64531624D01* X105658260Y-64431740D01* X105397540Y-64257533D01* X105167627Y-64211800D01* X105012373Y-64211800D01* X104782460Y-64257533D01* X104521740Y-64431740D01* X104455000Y-64531624D01* X104388260Y-64431740D01* X104127540Y-64257533D01* X103897627Y-64211800D01* X103742373Y-64211800D01* X103512460Y-64257533D01* X103251740Y-64431740D01* X103185000Y-64531624D01* X103118260Y-64431740D01* X102857540Y-64257533D01* X102627627Y-64211800D01* X102472373Y-64211800D01* X102242460Y-64257533D01* X101981740Y-64431740D01* X101915000Y-64531624D01* X101848260Y-64431740D01* X101587540Y-64257533D01* X101357627Y-64211800D01* X101202373Y-64211800D01* X100972460Y-64257533D01* X100711740Y-64431740D01* X100645000Y-64531624D01* X100578260Y-64431740D01* X100317540Y-64257533D01* X100087627Y-64211800D01* X99932373Y-64211800D01* X99702460Y-64257533D01* X99441740Y-64431740D01* X99375000Y-64531624D01* X99308260Y-64431740D01* X99047540Y-64257533D01* X98817627Y-64211800D01* X98662373Y-64211800D01* X98432460Y-64257533D01* X98171740Y-64431740D01* X98105000Y-64531624D01* X98038260Y-64431740D01* X97777540Y-64257533D01* X97547627Y-64211800D01* X97392373Y-64211800D01* X97162460Y-64257533D01* X96901740Y-64431740D01* X96839529Y-64524845D01* X96646480Y-64331796D01* X96356783Y-64211800D01* X96043217Y-64211800D01* X95753520Y-64331796D01* X95531796Y-64553520D01* X95411800Y-64843217D01* X95363200Y-64843217D01* X95363200Y-63963200D01* X145036800Y-63963200D01* X145036801Y-66535769D01* G04 #@! TO.N,0V9* G36* X112186751Y-75118304D02* X112118304Y-75186751D01* X112064527Y-75267235D01* X112027484Y-75356664D01* X112008600Y-75451601D01* X112008600Y-75548399D01* X112027484Y-75643336D01* X112064527Y-75732765D01* X112118304Y-75813249D01* X112186751Y-75881696D01* X112267235Y-75935473D01* X112356664Y-75972516D01* X112451601Y-75991400D01* X112548399Y-75991400D01* X112643336Y-75972516D01* X112732765Y-75935473D01* X112813249Y-75881696D01* X112881696Y-75813249D01* X112935473Y-75732765D01* X112972516Y-75643336D01* X112991400Y-75548399D01* X112991400Y-75451601D01* X112972516Y-75356664D01* X112935473Y-75267235D01* X112881696Y-75186751D01* X112813249Y-75118304D01* X112763405Y-75085000D01* X118236595Y-75085000D01* X118186751Y-75118304D01* X118118304Y-75186751D01* X118064527Y-75267235D01* X118027484Y-75356664D01* X118008600Y-75451601D01* X118008600Y-75548399D01* X118027484Y-75643336D01* X118064527Y-75732765D01* X118118304Y-75813249D01* X118186751Y-75881696D01* X118267235Y-75935473D01* X118356664Y-75972516D01* X118451601Y-75991400D01* X118548399Y-75991400D01* X118643336Y-75972516D01* X118732765Y-75935473D01* X118813249Y-75881696D01* X118881696Y-75813249D01* X118935473Y-75732765D01* X118972516Y-75643336D01* X118991400Y-75548399D01* X118991400Y-75451601D01* X118972516Y-75356664D01* X118935473Y-75267235D01* X118881696Y-75186751D01* X118813249Y-75118304D01* X118763405Y-75085000D01* X120236595Y-75085000D01* X120186751Y-75118304D01* X120118304Y-75186751D01* X120064527Y-75267235D01* X120027484Y-75356664D01* X120008600Y-75451601D01* X120008600Y-75548399D01* X120027484Y-75643336D01* X120064527Y-75732765D01* X120118304Y-75813249D01* X120186751Y-75881696D01* X120267235Y-75935473D01* X120356664Y-75972516D01* X120451601Y-75991400D01* X120548399Y-75991400D01* X120643336Y-75972516D01* X120732765Y-75935473D01* X120813249Y-75881696D01* X120881696Y-75813249D01* X120935473Y-75732765D01* X120972516Y-75643336D01* X120991400Y-75548399D01* X120991400Y-75451601D01* X120972516Y-75356664D01* X120935473Y-75267235D01* X120881696Y-75186751D01* X120813249Y-75118304D01* X120763405Y-75085000D01* X123236595Y-75085000D01* X123186751Y-75118304D01* X123118304Y-75186751D01* X123064527Y-75267235D01* X123027484Y-75356664D01* X123008600Y-75451601D01* X123008600Y-75548399D01* X123027484Y-75643336D01* X123064527Y-75732765D01* X123118304Y-75813249D01* X123186751Y-75881696D01* X123267235Y-75935473D01* X123356664Y-75972516D01* X123451601Y-75991400D01* X123548399Y-75991400D01* X123643336Y-75972516D01* X123732765Y-75935473D01* X123813249Y-75881696D01* X123881696Y-75813249D01* X123935473Y-75732765D01* X123972516Y-75643336D01* X123991400Y-75548399D01* X123991400Y-75451601D01* X123972516Y-75356664D01* X123935473Y-75267235D01* X123881696Y-75186751D01* X123813249Y-75118304D01* X123763405Y-75085000D01* X125236595Y-75085000D01* X125186751Y-75118304D01* X125118304Y-75186751D01* X125064527Y-75267235D01* X125027484Y-75356664D01* X125008600Y-75451601D01* X125008600Y-75548399D01* X125027484Y-75643336D01* X125064527Y-75732765D01* X125118304Y-75813249D01* X125186751Y-75881696D01* X125267235Y-75935473D01* X125356664Y-75972516D01* X125451601Y-75991400D01* X125548399Y-75991400D01* X125643336Y-75972516D01* X125732765Y-75935473D01* X125813249Y-75881696D01* X125881696Y-75813249D01* X125935473Y-75732765D01* X125972516Y-75643336D01* X125991400Y-75548399D01* X125991400Y-75451601D01* X125972516Y-75356664D01* X125935473Y-75267235D01* X125881696Y-75186751D01* X125813249Y-75118304D01* X125763405Y-75085000D01* X130683792Y-75085000D01* X130678637Y-75097446D01* X130657800Y-75202198D01* X130657800Y-75309002D01* X130678637Y-75413754D01* X130719509Y-75512428D01* X130778846Y-75601232D01* X130854368Y-75676754D01* X130943172Y-75736091D01* X131041846Y-75776963D01* X131146598Y-75797800D01* X131253402Y-75797800D01* X131358154Y-75776963D01* X131456828Y-75736091D01* X131545632Y-75676754D01* X131621154Y-75601232D01* X131680491Y-75512428D01* X131721363Y-75413754D01* X131742200Y-75309002D01* X131742200Y-75202198D01* X131721363Y-75097446D01* X131716208Y-75085000D01* X137357168Y-75085000D01* X137327484Y-75156664D01* X137308600Y-75251601D01* X137308600Y-75348399D01* X137327484Y-75443336D01* X137364527Y-75532765D01* X137418304Y-75613249D01* X137486751Y-75681696D01* X137567235Y-75735473D01* X137581736Y-75741480D01* X137564527Y-75767235D01* X137527484Y-75856664D01* X137508600Y-75951601D01* X137508600Y-76048399D01* X137527484Y-76143336D01* X137564527Y-76232765D01* X137618304Y-76313249D01* X137686751Y-76381696D01* X137767235Y-76435473D01* X137856664Y-76472516D01* X137951601Y-76491400D01* X138048399Y-76491400D01* X138143336Y-76472516D01* X138232765Y-76435473D01* X138313249Y-76381696D01* X138381696Y-76313249D01* X138435473Y-76232765D01* X138472516Y-76143336D01* X138480913Y-76101121D01* X147915000Y-85535208D01* X147915000Y-99415000D01* X138962870Y-99415000D01* X138921931Y-99353730D01* X138846270Y-99278069D01* X138757302Y-99218623D01* X138658446Y-99177675D01* X138553500Y-99156800D01* X138446500Y-99156800D01* X138341554Y-99177675D01* X138242698Y-99218623D01* X138153730Y-99278069D01* X138078069Y-99353730D01* X138037130Y-99415000D01* X135710243Y-99415000D01* X135680491Y-99343172D01* X135621154Y-99254368D01* X135545632Y-99178846D01* X135456828Y-99119509D01* X135358154Y-99078637D01* X135253402Y-99057800D01* X135146598Y-99057800D01* X135041846Y-99078637D01* X134943172Y-99119509D01* X134854368Y-99178846D01* X134778846Y-99254368D01* X134719509Y-99343172D01* X134689757Y-99415000D01* X133035208Y-99415000D01* X132066806Y-98446598D01* X133157800Y-98446598D01* X133157800Y-98553402D01* X133178637Y-98658154D01* X133219509Y-98756828D01* X133278846Y-98845632D01* X133354368Y-98921154D01* X133443172Y-98980491D01* X133541846Y-99021363D01* X133646598Y-99042200D01* X133753402Y-99042200D01* X133858154Y-99021363D01* X133956828Y-98980491D01* X134045632Y-98921154D01* X134121154Y-98845632D01* X134180491Y-98756828D01* X134221363Y-98658154D01* X134242200Y-98553402D01* X134242200Y-98446598D01* X136657800Y-98446598D01* X136657800Y-98553402D01* X136678637Y-98658154D01* X136719509Y-98756828D01* X136778846Y-98845632D01* X136854368Y-98921154D01* X136943172Y-98980491D01* X137041846Y-99021363D01* X137146598Y-99042200D01* X137253402Y-99042200D01* X137358154Y-99021363D01* X137456828Y-98980491D01* X137545632Y-98921154D01* X137621154Y-98845632D01* X137680491Y-98756828D01* X137721363Y-98658154D01* X137742200Y-98553402D01* X137742200Y-98546598D01* X139057800Y-98546598D01* X139057800Y-98653402D01* X139078637Y-98758154D01* X139119509Y-98856828D01* X139178846Y-98945632D01* X139254368Y-99021154D01* X139343172Y-99080491D01* X139441846Y-99121363D01* X139546598Y-99142200D01* X139653402Y-99142200D01* X139758154Y-99121363D01* X139856828Y-99080491D01* X139945632Y-99021154D01* X140021154Y-98945632D01* X140080491Y-98856828D01* X140121363Y-98758154D01* X140142200Y-98653402D01* X140142200Y-98546598D01* X140121363Y-98441846D01* X140080491Y-98343172D01* X140021154Y-98254368D01* X139945632Y-98178846D01* X139856828Y-98119509D01* X139758154Y-98078637D01* X139653402Y-98057800D01* X139546598Y-98057800D01* X139441846Y-98078637D01* X139343172Y-98119509D01* X139254368Y-98178846D01* X139178846Y-98254368D01* X139119509Y-98343172D01* X139078637Y-98441846D01* X139057800Y-98546598D01* X137742200Y-98546598D01* X137742200Y-98446598D01* X137721363Y-98341846D01* X137680491Y-98243172D01* X137621154Y-98154368D01* X137545632Y-98078846D01* X137456828Y-98019509D01* X137358154Y-97978637D01* X137253402Y-97957800D01* X137146598Y-97957800D01* X137041846Y-97978637D01* X136943172Y-98019509D01* X136854368Y-98078846D01* X136778846Y-98154368D01* X136719509Y-98243172D01* X136678637Y-98341846D01* X136657800Y-98446598D01* X134242200Y-98446598D01* X134221363Y-98341846D01* X134180491Y-98243172D01* X134121154Y-98154368D01* X134045632Y-98078846D01* X133956828Y-98019509D01* X133858154Y-97978637D01* X133753402Y-97957800D01* X133646598Y-97957800D01* X133541846Y-97978637D01* X133443172Y-98019509D01* X133354368Y-98078846D01* X133278846Y-98154368D01* X133219509Y-98243172D01* X133178637Y-98341846D01* X133157800Y-98446598D01* X132066806Y-98446598D01* X130166806Y-96546598D01* X136657800Y-96546598D01* X136657800Y-96653402D01* X136678637Y-96758154D01* X136719509Y-96856828D01* X136778846Y-96945632D01* X136854368Y-97021154D01* X136943172Y-97080491D01* X137041846Y-97121363D01* X137146598Y-97142200D01* X137253402Y-97142200D01* X137358154Y-97121363D01* X137456828Y-97080491D01* X137545632Y-97021154D01* X137621154Y-96945632D01* X137680491Y-96856828D01* X137721363Y-96758154D01* X137742200Y-96653402D01* X137742200Y-96546598D01* X137721363Y-96441846D01* X137680491Y-96343172D01* X137621154Y-96254368D01* X137545632Y-96178846D01* X137456828Y-96119509D01* X137358154Y-96078637D01* X137253402Y-96057800D01* X137146598Y-96057800D01* X137041846Y-96078637D01* X136943172Y-96119509D01* X136854368Y-96178846D01* X136778846Y-96254368D01* X136719509Y-96343172D01* X136678637Y-96441846D01* X136657800Y-96546598D01* X130166806Y-96546598D01* X128066806Y-94446598D01* X131357800Y-94446598D01* X131357800Y-94553402D01* X131378637Y-94658154D01* X131419509Y-94756828D01* X131478846Y-94845632D01* X131554368Y-94921154D01* X131643172Y-94980491D01* X131741846Y-95021363D01* X131846598Y-95042200D01* X131953402Y-95042200D01* X132058154Y-95021363D01* X132156828Y-94980491D01* X132245632Y-94921154D01* X132321154Y-94845632D01* X132380491Y-94756828D01* X132421363Y-94658154D01* X132442200Y-94553402D01* X132442200Y-94446598D01* X132957800Y-94446598D01* X132957800Y-94553402D01* X132978637Y-94658154D01* X133019509Y-94756828D01* X133078846Y-94845632D01* X133154368Y-94921154D01* X133243172Y-94980491D01* X133341846Y-95021363D01* X133446598Y-95042200D01* X133553402Y-95042200D01* X133658154Y-95021363D01* X133756828Y-94980491D01* X133845632Y-94921154D01* X133921154Y-94845632D01* X133980491Y-94756828D01* X134021363Y-94658154D01* X134042200Y-94553402D01* X134042200Y-94446598D01* X134021363Y-94341846D01* X133980491Y-94243172D01* X133921154Y-94154368D01* X133845632Y-94078846D01* X133756828Y-94019509D01* X133658154Y-93978637D01* X133553402Y-93957800D01* X133446598Y-93957800D01* X133341846Y-93978637D01* X133243172Y-94019509D01* X133154368Y-94078846D01* X133078846Y-94154368D01* X133019509Y-94243172D01* X132978637Y-94341846D01* X132957800Y-94446598D01* X132442200Y-94446598D01* X132421363Y-94341846D01* X132380491Y-94243172D01* X132321154Y-94154368D01* X132245632Y-94078846D01* X132156828Y-94019509D01* X132058154Y-93978637D01* X131953402Y-93957800D01* X131846598Y-93957800D01* X131741846Y-93978637D01* X131643172Y-94019509D01* X131554368Y-94078846D01* X131478846Y-94154368D01* X131419509Y-94243172D01* X131378637Y-94341846D01* X131357800Y-94446598D01* X128066806Y-94446598D01* X126969436Y-93349228D01* X126935473Y-93267235D01* X126881696Y-93186751D01* X126813249Y-93118304D01* X126732765Y-93064527D01* X126650772Y-93030564D01* X126071809Y-92451601D01* X127008600Y-92451601D01* X127008600Y-92548399D01* X127027484Y-92643336D01* X127064527Y-92732765D01* X127118304Y-92813249D01* X127186751Y-92881696D01* X127267235Y-92935473D01* X127356664Y-92972516D01* X127451601Y-92991400D01* X127548399Y-92991400D01* X127643336Y-92972516D01* X127732765Y-92935473D01* X127813249Y-92881696D01* X127881696Y-92813249D01* X127935473Y-92732765D01* X127972516Y-92643336D01* X127991400Y-92548399D01* X127991400Y-92451601D01* X127972516Y-92356664D01* X127935473Y-92267235D01* X127881696Y-92186751D01* X127813249Y-92118304D01* X127732765Y-92064527D01* X127643336Y-92027484D01* X127548399Y-92008600D01* X127451601Y-92008600D01* X127356664Y-92027484D01* X127267235Y-92064527D01* X127186751Y-92118304D01* X127118304Y-92186751D01* X127064527Y-92267235D01* X127027484Y-92356664D01* X127008600Y-92451601D01* X126071809Y-92451601D01* X125969436Y-92349228D01* X125935473Y-92267235D01* X125881696Y-92186751D01* X125813249Y-92118304D01* X125732765Y-92064527D01* X125650772Y-92030564D01* X125071809Y-91451601D01* X126008600Y-91451601D01* X126008600Y-91548399D01* X126027484Y-91643336D01* X126064527Y-91732765D01* X126118304Y-91813249D01* X126186751Y-91881696D01* X126267235Y-91935473D01* X126356664Y-91972516D01* X126451601Y-91991400D01* X126548399Y-91991400D01* X126643336Y-91972516D01* X126732765Y-91935473D01* X126813249Y-91881696D01* X126881696Y-91813249D01* X126935473Y-91732765D01* X126972516Y-91643336D01* X126991400Y-91548399D01* X126991400Y-91451601D01* X126990405Y-91446598D01* X132957800Y-91446598D01* X132957800Y-91553402D01* X132978637Y-91658154D01* X133019509Y-91756828D01* X133078846Y-91845632D01* X133154368Y-91921154D01* X133243172Y-91980491D01* X133341846Y-92021363D01* X133446598Y-92042200D01* X133553402Y-92042200D01* X133658154Y-92021363D01* X133756828Y-91980491D01* X133845632Y-91921154D01* X133921154Y-91845632D01* X133980491Y-91756828D01* X134021363Y-91658154D01* X134042200Y-91553402D01* X134042200Y-91446598D01* X134021363Y-91341846D01* X133980491Y-91243172D01* X133921154Y-91154368D01* X133845632Y-91078846D01* X133756828Y-91019509D01* X133658154Y-90978637D01* X133553402Y-90957800D01* X133446598Y-90957800D01* X133341846Y-90978637D01* X133243172Y-91019509D01* X133154368Y-91078846D01* X133078846Y-91154368D01* X133019509Y-91243172D01* X132978637Y-91341846D01* X132957800Y-91446598D01* X126990405Y-91446598D01* X126972516Y-91356664D01* X126935473Y-91267235D01* X126881696Y-91186751D01* X126813249Y-91118304D01* X126732765Y-91064527D01* X126643336Y-91027484D01* X126548399Y-91008600D01* X126451601Y-91008600D01* X126356664Y-91027484D01* X126267235Y-91064527D01* X126186751Y-91118304D01* X126118304Y-91186751D01* X126064527Y-91267235D01* X126027484Y-91356664D01* X126008600Y-91451601D01* X125071809Y-91451601D01* X124969436Y-91349228D01* X124935473Y-91267235D01* X124881696Y-91186751D01* X124813249Y-91118304D01* X124732765Y-91064527D01* X124650772Y-91030564D01* X124071809Y-90451601D01* X125008600Y-90451601D01* X125008600Y-90548399D01* X125027484Y-90643336D01* X125064527Y-90732765D01* X125118304Y-90813249D01* X125186751Y-90881696D01* X125267235Y-90935473D01* X125356664Y-90972516D01* X125451601Y-90991400D01* X125548399Y-90991400D01* X125643336Y-90972516D01* X125732765Y-90935473D01* X125813249Y-90881696D01* X125881696Y-90813249D01* X125935473Y-90732765D01* X125972516Y-90643336D01* X125991400Y-90548399D01* X125991400Y-90451601D01* X125972516Y-90356664D01* X125935473Y-90267235D01* X125881696Y-90186751D01* X125813249Y-90118304D01* X125732765Y-90064527D01* X125643336Y-90027484D01* X125548399Y-90008600D01* X125451601Y-90008600D01* X125356664Y-90027484D01* X125267235Y-90064527D01* X125186751Y-90118304D01* X125118304Y-90186751D01* X125064527Y-90267235D01* X125027484Y-90356664D01* X125008600Y-90451601D01* X124071809Y-90451601D01* X123969436Y-90349228D01* X123935473Y-90267235D01* X123881696Y-90186751D01* X123813249Y-90118304D01* X123732765Y-90064527D01* X123650772Y-90030564D01* X123071809Y-89451601D01* X124008600Y-89451601D01* X124008600Y-89548399D01* X124027484Y-89643336D01* X124064527Y-89732765D01* X124118304Y-89813249D01* X124186751Y-89881696D01* X124267235Y-89935473D01* X124356664Y-89972516D01* X124451601Y-89991400D01* X124548399Y-89991400D01* X124643336Y-89972516D01* X124732765Y-89935473D01* X124813249Y-89881696D01* X124881696Y-89813249D01* X124935473Y-89732765D01* X124972516Y-89643336D01* X124991400Y-89548399D01* X124991400Y-89451601D01* X127008600Y-89451601D01* X127008600Y-89548399D01* X127027484Y-89643336D01* X127064527Y-89732765D01* X127118304Y-89813249D01* X127186751Y-89881696D01* X127267235Y-89935473D01* X127356664Y-89972516D01* X127451601Y-89991400D01* X127548399Y-89991400D01* X127643336Y-89972516D01* X127732765Y-89935473D01* X127813249Y-89881696D01* X127881696Y-89813249D01* X127903571Y-89780510D01* X134786800Y-89780510D01* X134786800Y-90019490D01* X134833423Y-90253877D01* X134924876Y-90474666D01* X135057646Y-90673370D01* X135226630Y-90842354D01* X135425334Y-90975124D01* X135646123Y-91066577D01* X135880510Y-91113200D01* X136119490Y-91113200D01* X136353877Y-91066577D01* X136574666Y-90975124D01* X136773370Y-90842354D01* X136942354Y-90673370D01* X137075124Y-90474666D01* X137166577Y-90253877D01* X137213200Y-90019490D01* X137213200Y-89780510D01* X137166577Y-89546123D01* X137075124Y-89325334D01* X136942354Y-89126630D01* X136773370Y-88957646D01* X136574666Y-88824876D01* X136353877Y-88733423D01* X136119490Y-88686800D01* X135880510Y-88686800D01* X135646123Y-88733423D01* X135425334Y-88824876D01* X135226630Y-88957646D01* X135057646Y-89126630D01* X134924876Y-89325334D01* X134833423Y-89546123D01* X134786800Y-89780510D01* X127903571Y-89780510D01* X127935473Y-89732765D01* X127972516Y-89643336D01* X127991400Y-89548399D01* X127991400Y-89451601D01* X127972516Y-89356664D01* X127935473Y-89267235D01* X127881696Y-89186751D01* X127813249Y-89118304D01* X127732765Y-89064527D01* X127643336Y-89027484D01* X127548399Y-89008600D01* X127451601Y-89008600D01* X127356664Y-89027484D01* X127267235Y-89064527D01* X127186751Y-89118304D01* X127118304Y-89186751D01* X127064527Y-89267235D01* X127027484Y-89356664D01* X127008600Y-89451601D01* X124991400Y-89451601D01* X124972516Y-89356664D01* X124935473Y-89267235D01* X124881696Y-89186751D01* X124813249Y-89118304D01* X124732765Y-89064527D01* X124643336Y-89027484D01* X124548399Y-89008600D01* X124451601Y-89008600D01* X124356664Y-89027484D01* X124267235Y-89064527D01* X124186751Y-89118304D01* X124118304Y-89186751D01* X124064527Y-89267235D01* X124027484Y-89356664D01* X124008600Y-89451601D01* X123071809Y-89451601D01* X122969436Y-89349228D01* X122935473Y-89267235D01* X122881696Y-89186751D01* X122813249Y-89118304D01* X122732765Y-89064527D01* X122650772Y-89030564D01* X122071809Y-88451601D01* X124008600Y-88451601D01* X124008600Y-88548399D01* X124027484Y-88643336D01* X124064527Y-88732765D01* X124118304Y-88813249D01* X124186751Y-88881696D01* X124267235Y-88935473D01* X124356664Y-88972516D01* X124451601Y-88991400D01* X124548399Y-88991400D01* X124643336Y-88972516D01* X124732765Y-88935473D01* X124813249Y-88881696D01* X124881696Y-88813249D01* X124935473Y-88732765D01* X124972516Y-88643336D01* X124991400Y-88548399D01* X124991400Y-88451601D01* X125008600Y-88451601D01* X125008600Y-88548399D01* X125027484Y-88643336D01* X125064527Y-88732765D01* X125118304Y-88813249D01* X125186751Y-88881696D01* X125267235Y-88935473D01* X125356664Y-88972516D01* X125451601Y-88991400D01* X125548399Y-88991400D01* X125643336Y-88972516D01* X125732765Y-88935473D01* X125813249Y-88881696D01* X125881696Y-88813249D01* X125935473Y-88732765D01* X125972516Y-88643336D01* X125991400Y-88548399D01* X125991400Y-88451601D01* X126008600Y-88451601D01* X126008600Y-88548399D01* X126027484Y-88643336D01* X126064527Y-88732765D01* X126118304Y-88813249D01* X126186751Y-88881696D01* X126267235Y-88935473D01* X126356664Y-88972516D01* X126451601Y-88991400D01* X126548399Y-88991400D01* X126643336Y-88972516D01* X126732765Y-88935473D01* X126813249Y-88881696D01* X126881696Y-88813249D01* X126935473Y-88732765D01* X126972516Y-88643336D01* X126991400Y-88548399D01* X126991400Y-88451601D01* X127008600Y-88451601D01* X127008600Y-88548399D01* X127027484Y-88643336D01* X127064527Y-88732765D01* X127118304Y-88813249D01* X127186751Y-88881696D01* X127267235Y-88935473D01* X127356664Y-88972516D01* X127451601Y-88991400D01* X127548399Y-88991400D01* X127643336Y-88972516D01* X127732765Y-88935473D01* X127813249Y-88881696D01* X127881696Y-88813249D01* X127935473Y-88732765D01* X127972516Y-88643336D01* X127991400Y-88548399D01* X127991400Y-88451601D01* X127972516Y-88356664D01* X127935473Y-88267235D01* X127881696Y-88186751D01* X127813249Y-88118304D01* X127732765Y-88064527D01* X127689481Y-88046598D01* X130657800Y-88046598D01* X130657800Y-88153402D01* X130678637Y-88258154D01* X130719509Y-88356828D01* X130778846Y-88445632D01* X130854368Y-88521154D01* X130943172Y-88580491D01* X131041846Y-88621363D01* X131146598Y-88642200D01* X131253402Y-88642200D01* X131358154Y-88621363D01* X131456828Y-88580491D01* X131545632Y-88521154D01* X131621154Y-88445632D01* X131680491Y-88356828D01* X131684724Y-88346608D01* X139057800Y-88346608D01* X139057800Y-88453412D01* X139078637Y-88558164D01* X139119509Y-88656838D01* X139178846Y-88745642D01* X139254368Y-88821164D01* X139343172Y-88880501D01* X139441846Y-88921373D01* X139546598Y-88942210D01* X139653402Y-88942210D01* X139758154Y-88921373D01* X139856828Y-88880501D01* X139945632Y-88821164D01* X140021154Y-88745642D01* X140080491Y-88656838D01* X140121363Y-88558164D01* X140142200Y-88453412D01* X140142200Y-88346608D01* X140121363Y-88241856D01* X140080491Y-88143182D01* X140021154Y-88054378D01* X139945632Y-87978856D01* X139856828Y-87919519D01* X139758154Y-87878647D01* X139653402Y-87857810D01* X139546598Y-87857810D01* X139441846Y-87878647D01* X139343172Y-87919519D01* X139254368Y-87978856D01* X139178846Y-88054378D01* X139119509Y-88143182D01* X139078637Y-88241856D01* X139057800Y-88346608D01* X131684724Y-88346608D01* X131721363Y-88258154D01* X131742200Y-88153402D01* X131742200Y-88046598D01* X131721363Y-87941846D01* X131680491Y-87843172D01* X131621154Y-87754368D01* X131545632Y-87678846D01* X131456828Y-87619509D01* X131358154Y-87578637D01* X131253402Y-87557800D01* X131146598Y-87557800D01* X131041846Y-87578637D01* X130943172Y-87619509D01* X130854368Y-87678846D01* X130778846Y-87754368D01* X130719509Y-87843172D01* X130678637Y-87941846D01* X130657800Y-88046598D01* X127689481Y-88046598D01* X127643336Y-88027484D01* X127548399Y-88008600D01* X127451601Y-88008600D01* X127356664Y-88027484D01* X127267235Y-88064527D01* X127186751Y-88118304D01* X127118304Y-88186751D01* X127064527Y-88267235D01* X127027484Y-88356664D01* X127008600Y-88451601D01* X126991400Y-88451601D01* X126972516Y-88356664D01* X126935473Y-88267235D01* X126881696Y-88186751D01* X126813249Y-88118304D01* X126732765Y-88064527D01* X126643336Y-88027484D01* X126548399Y-88008600D01* X126451601Y-88008600D01* X126356664Y-88027484D01* X126267235Y-88064527D01* X126186751Y-88118304D01* X126118304Y-88186751D01* X126064527Y-88267235D01* X126027484Y-88356664D01* X126008600Y-88451601D01* X125991400Y-88451601D01* X125972516Y-88356664D01* X125935473Y-88267235D01* X125881696Y-88186751D01* X125813249Y-88118304D01* X125732765Y-88064527D01* X125643336Y-88027484D01* X125548399Y-88008600D01* X125451601Y-88008600D01* X125356664Y-88027484D01* X125267235Y-88064527D01* X125186751Y-88118304D01* X125118304Y-88186751D01* X125064527Y-88267235D01* X125027484Y-88356664D01* X125008600Y-88451601D01* X124991400Y-88451601D01* X124972516Y-88356664D01* X124935473Y-88267235D01* X124881696Y-88186751D01* X124813249Y-88118304D01* X124732765Y-88064527D01* X124643336Y-88027484D01* X124548399Y-88008600D01* X124451601Y-88008600D01* X124356664Y-88027484D01* X124267235Y-88064527D01* X124186751Y-88118304D01* X124118304Y-88186751D01* X124064527Y-88267235D01* X124027484Y-88356664D01* X124008600Y-88451601D01* X122071809Y-88451601D01* X121969436Y-88349228D01* X121935473Y-88267235D01* X121881696Y-88186751D01* X121813249Y-88118304D01* X121732765Y-88064527D01* X121650772Y-88030564D01* X121071809Y-87451601D01* X123008600Y-87451601D01* X123008600Y-87548399D01* X123027484Y-87643336D01* X123064527Y-87732765D01* X123118304Y-87813249D01* X123186751Y-87881696D01* X123267235Y-87935473D01* X123356664Y-87972516D01* X123451601Y-87991400D01* X123548399Y-87991400D01* X123643336Y-87972516D01* X123732765Y-87935473D01* X123813249Y-87881696D01* X123881696Y-87813249D01* X123935473Y-87732765D01* X123972516Y-87643336D01* X123991400Y-87548399D01* X123991400Y-87451601D01* X124008600Y-87451601D01* X124008600Y-87548399D01* X124027484Y-87643336D01* X124064527Y-87732765D01* X124118304Y-87813249D01* X124186751Y-87881696D01* X124267235Y-87935473D01* X124356664Y-87972516D01* X124451601Y-87991400D01* X124548399Y-87991400D01* X124643336Y-87972516D01* X124732765Y-87935473D01* X124813249Y-87881696D01* X124881696Y-87813249D01* X124935473Y-87732765D01* X124972516Y-87643336D01* X124991400Y-87548399D01* X124991400Y-87451601D01* X124972516Y-87356664D01* X124935473Y-87267235D01* X124881696Y-87186751D01* X124813249Y-87118304D01* X124732765Y-87064527D01* X124643336Y-87027484D01* X124548399Y-87008600D01* X124451601Y-87008600D01* X124356664Y-87027484D01* X124267235Y-87064527D01* X124186751Y-87118304D01* X124118304Y-87186751D01* X124064527Y-87267235D01* X124027484Y-87356664D01* X124008600Y-87451601D01* X123991400Y-87451601D01* X123972516Y-87356664D01* X123935473Y-87267235D01* X123881696Y-87186751D01* X123813249Y-87118304D01* X123732765Y-87064527D01* X123643336Y-87027484D01* X123548399Y-87008600D01* X123451601Y-87008600D01* X123356664Y-87027484D01* X123267235Y-87064527D01* X123186751Y-87118304D01* X123118304Y-87186751D01* X123064527Y-87267235D01* X123027484Y-87356664D01* X123008600Y-87451601D01* X121071809Y-87451601D01* X120860104Y-87239896D01* X120847223Y-87229325D01* X120832528Y-87221470D01* X120816583Y-87216633D01* X120800000Y-87215000D01* X117900571Y-87215000D01* X117881696Y-87186751D01* X117813249Y-87118304D01* X117732765Y-87064527D01* X117643336Y-87027484D01* X117548399Y-87008600D01* X117451601Y-87008600D01* X117356664Y-87027484D01* X117267235Y-87064527D01* X117186751Y-87118304D01* X117118304Y-87186751D01* X117099429Y-87215000D01* X116900571Y-87215000D01* X116881696Y-87186751D01* X116813249Y-87118304D01* X116732765Y-87064527D01* X116643336Y-87027484D01* X116548399Y-87008600D01* X116451601Y-87008600D01* X116356664Y-87027484D01* X116267235Y-87064527D01* X116186751Y-87118304D01* X116118304Y-87186751D01* X116099429Y-87215000D01* X115900571Y-87215000D01* X115881696Y-87186751D01* X115813249Y-87118304D01* X115732765Y-87064527D01* X115643336Y-87027484D01* X115548399Y-87008600D01* X115451601Y-87008600D01* X115356664Y-87027484D01* X115267235Y-87064527D01* X115186751Y-87118304D01* X115118304Y-87186751D01* X115099429Y-87215000D01* X114900571Y-87215000D01* X114881696Y-87186751D01* X114813249Y-87118304D01* X114732765Y-87064527D01* X114643336Y-87027484D01* X114548399Y-87008600D01* X114451601Y-87008600D01* X114356664Y-87027484D01* X114267235Y-87064527D01* X114186751Y-87118304D01* X114118304Y-87186751D01* X114099429Y-87215000D01* X113900571Y-87215000D01* X113881696Y-87186751D01* X113813249Y-87118304D01* X113732765Y-87064527D01* X113643336Y-87027484D01* X113548399Y-87008600D01* X113451601Y-87008600D01* X113356664Y-87027484D01* X113267235Y-87064527D01* X113186751Y-87118304D01* X113118304Y-87186751D01* X113099429Y-87215000D01* X110085000Y-87215000D01* X110085000Y-86763405D01* X110118304Y-86813249D01* X110186751Y-86881696D01* X110267235Y-86935473D01* X110356664Y-86972516D01* X110451601Y-86991400D01* X110548399Y-86991400D01* X110643336Y-86972516D01* X110732765Y-86935473D01* X110813249Y-86881696D01* X110881696Y-86813249D01* X110935473Y-86732765D01* X110972516Y-86643336D01* X110991400Y-86548399D01* X110991400Y-86451601D01* X112008600Y-86451601D01* X112008600Y-86548399D01* X112027484Y-86643336D01* X112064527Y-86732765D01* X112118304Y-86813249D01* X112186751Y-86881696D01* X112267235Y-86935473D01* X112356664Y-86972516D01* X112451601Y-86991400D01* X112548399Y-86991400D01* X112643336Y-86972516D01* X112732765Y-86935473D01* X112813249Y-86881696D01* X112881696Y-86813249D01* X112935473Y-86732765D01* X112972516Y-86643336D01* X112991400Y-86548399D01* X112991400Y-86451601D01* X118008600Y-86451601D01* X118008600Y-86548399D01* X118027484Y-86643336D01* X118064527Y-86732765D01* X118118304Y-86813249D01* X118186751Y-86881696D01* X118267235Y-86935473D01* X118356664Y-86972516D01* X118451601Y-86991400D01* X118548399Y-86991400D01* X118643336Y-86972516D01* X118732765Y-86935473D01* X118813249Y-86881696D01* X118881696Y-86813249D01* X118935473Y-86732765D01* X118972516Y-86643336D01* X118991400Y-86548399D01* X118991400Y-86451601D01* X120008600Y-86451601D01* X120008600Y-86548399D01* X120027484Y-86643336D01* X120064527Y-86732765D01* X120118304Y-86813249D01* X120186751Y-86881696D01* X120267235Y-86935473D01* X120356664Y-86972516D01* X120451601Y-86991400D01* X120548399Y-86991400D01* X120643336Y-86972516D01* X120732765Y-86935473D01* X120813249Y-86881696D01* X120881696Y-86813249D01* X120935473Y-86732765D01* X120972516Y-86643336D01* X120991400Y-86548399D01* X120991400Y-86451601D01* X123008600Y-86451601D01* X123008600Y-86548399D01* X123027484Y-86643336D01* X123064527Y-86732765D01* X123118304Y-86813249D01* X123186751Y-86881696D01* X123267235Y-86935473D01* X123356664Y-86972516D01* X123451601Y-86991400D01* X123548399Y-86991400D01* X123643336Y-86972516D01* X123732765Y-86935473D01* X123813249Y-86881696D01* X123881696Y-86813249D01* X123935473Y-86732765D01* X123972516Y-86643336D01* X123991400Y-86548399D01* X123991400Y-86451601D01* X125008600Y-86451601D01* X125008600Y-86548399D01* X125027484Y-86643336D01* X125064527Y-86732765D01* X125118304Y-86813249D01* X125186751Y-86881696D01* X125267235Y-86935473D01* X125356664Y-86972516D01* X125451601Y-86991400D01* X125548399Y-86991400D01* X125643336Y-86972516D01* X125732765Y-86935473D01* X125813249Y-86881696D01* X125881696Y-86813249D01* X125935473Y-86732765D01* X125972516Y-86643336D01* X125991400Y-86548399D01* X125991400Y-86490998D01* X137465599Y-86490998D01* X137465599Y-86597802D01* X137486436Y-86702554D01* X137527308Y-86801228D01* X137586645Y-86890032D01* X137596613Y-86900000D01* X137586645Y-86909968D01* X137527308Y-86998772D01* X137486436Y-87097446D01* X137465599Y-87202198D01* X137465599Y-87309002D01* X137486436Y-87413754D01* X137527308Y-87512428D01* X137586645Y-87601232D01* X137662167Y-87676754D01* X137750971Y-87736091D01* X137849645Y-87776963D01* X137954397Y-87797800D01* X138061201Y-87797800D01* X138165953Y-87776963D01* X138264627Y-87736091D01* X138353431Y-87676754D01* X138428953Y-87601232D01* X138488290Y-87512428D01* X138529162Y-87413754D01* X138549999Y-87309002D01* X138549999Y-87302459D01* X138578846Y-87345632D01* X138654368Y-87421154D01* X138743172Y-87480491D01* X138841846Y-87521363D01* X138946598Y-87542200D01* X139053402Y-87542200D01* X139158154Y-87521363D01* X139256828Y-87480491D01* X139345632Y-87421154D01* X139421154Y-87345632D01* X139480491Y-87256828D01* X139521363Y-87158154D01* X139542200Y-87053402D01* X139542200Y-86946598D01* X139521363Y-86841846D01* X139480491Y-86743172D01* X139421154Y-86654368D01* X139345632Y-86578846D01* X139256828Y-86519509D01* X139158154Y-86478637D01* X139053402Y-86457800D01* X138946598Y-86457800D01* X138841846Y-86478637D01* X138743172Y-86519509D01* X138654368Y-86578846D01* X138578846Y-86654368D01* X138519509Y-86743172D01* X138478637Y-86841846D01* X138457800Y-86946598D01* X138457800Y-86953141D01* X138428953Y-86909968D01* X138418985Y-86900000D01* X138428953Y-86890032D01* X138488290Y-86801228D01* X138529162Y-86702554D01* X138549999Y-86597802D01* X138549999Y-86490998D01* X138529162Y-86386246D01* X138488290Y-86287572D01* X138428953Y-86198768D01* X138353431Y-86123246D01* X138264627Y-86063909D01* X138165953Y-86023037D01* X138061201Y-86002200D01* X137954397Y-86002200D01* X137849645Y-86023037D01* X137750971Y-86063909D01* X137662167Y-86123246D01* X137586645Y-86198768D01* X137527308Y-86287572D01* X137486436Y-86386246D01* X137465599Y-86490998D01* X125991400Y-86490998D01* X125991400Y-86451601D01* X125972516Y-86356664D01* X125935473Y-86267235D01* X125881696Y-86186751D01* X125813249Y-86118304D01* X125732765Y-86064527D01* X125643336Y-86027484D01* X125548399Y-86008600D01* X125451601Y-86008600D01* X125356664Y-86027484D01* X125267235Y-86064527D01* X125186751Y-86118304D01* X125118304Y-86186751D01* X125064527Y-86267235D01* X125027484Y-86356664D01* X125008600Y-86451601D01* X123991400Y-86451601D01* X123972516Y-86356664D01* X123935473Y-86267235D01* X123881696Y-86186751D01* X123813249Y-86118304D01* X123732765Y-86064527D01* X123643336Y-86027484D01* X123548399Y-86008600D01* X123451601Y-86008600D01* X123356664Y-86027484D01* X123267235Y-86064527D01* X123186751Y-86118304D01* X123118304Y-86186751D01* X123064527Y-86267235D01* X123027484Y-86356664D01* X123008600Y-86451601D01* X120991400Y-86451601D01* X120972516Y-86356664D01* X120935473Y-86267235D01* X120881696Y-86186751D01* X120813249Y-86118304D01* X120732765Y-86064527D01* X120643336Y-86027484D01* X120548399Y-86008600D01* X120451601Y-86008600D01* X120356664Y-86027484D01* X120267235Y-86064527D01* X120186751Y-86118304D01* X120118304Y-86186751D01* X120064527Y-86267235D01* X120027484Y-86356664D01* X120008600Y-86451601D01* X118991400Y-86451601D01* X118972516Y-86356664D01* X118935473Y-86267235D01* X118881696Y-86186751D01* X118813249Y-86118304D01* X118732765Y-86064527D01* X118643336Y-86027484D01* X118548399Y-86008600D01* X118451601Y-86008600D01* X118356664Y-86027484D01* X118267235Y-86064527D01* X118186751Y-86118304D01* X118118304Y-86186751D01* X118064527Y-86267235D01* X118027484Y-86356664D01* X118008600Y-86451601D01* X112991400Y-86451601D01* X112972516Y-86356664D01* X112935473Y-86267235D01* X112881696Y-86186751D01* X112813249Y-86118304D01* X112732765Y-86064527D01* X112643336Y-86027484D01* X112548399Y-86008600D01* X112451601Y-86008600D01* X112356664Y-86027484D01* X112267235Y-86064527D01* X112186751Y-86118304D01* X112118304Y-86186751D01* X112064527Y-86267235D01* X112027484Y-86356664D01* X112008600Y-86451601D01* X110991400Y-86451601D01* X110972516Y-86356664D01* X110935473Y-86267235D01* X110881696Y-86186751D01* X110813249Y-86118304D01* X110732765Y-86064527D01* X110643336Y-86027484D01* X110548399Y-86008600D01* X110451601Y-86008600D01* X110356664Y-86027484D01* X110267235Y-86064527D01* X110186751Y-86118304D01* X110118304Y-86186751D01* X110085000Y-86236595D01* X110085000Y-85451601D01* X116008600Y-85451601D01* X116008600Y-85548399D01* X116027484Y-85643336D01* X116064527Y-85732765D01* X116118304Y-85813249D01* X116186751Y-85881696D01* X116267235Y-85935473D01* X116356664Y-85972516D01* X116451601Y-85991400D01* X116548399Y-85991400D01* X116643336Y-85972516D01* X116732765Y-85935473D01* X116813249Y-85881696D01* X116881696Y-85813249D01* X116935473Y-85732765D01* X116972516Y-85643336D01* X116991400Y-85548399D01* X116991400Y-85451601D01* X118008600Y-85451601D01* X118008600Y-85548399D01* X118027484Y-85643336D01* X118064527Y-85732765D01* X118118304Y-85813249D01* X118186751Y-85881696D01* X118267235Y-85935473D01* X118356664Y-85972516D01* X118451601Y-85991400D01* X118548399Y-85991400D01* X118643336Y-85972516D01* X118732765Y-85935473D01* X118813249Y-85881696D01* X118881696Y-85813249D01* X118935473Y-85732765D01* X118972516Y-85643336D01* X118991400Y-85548399D01* X118991400Y-85451601D01* X122008600Y-85451601D01* X122008600Y-85548399D01* X122027484Y-85643336D01* X122064527Y-85732765D01* X122118304Y-85813249D01* X122186751Y-85881696D01* X122267235Y-85935473D01* X122356664Y-85972516D01* X122451601Y-85991400D01* X122548399Y-85991400D01* X122643336Y-85972516D01* X122732765Y-85935473D01* X122813249Y-85881696D01* X122881696Y-85813249D01* X122935473Y-85732765D01* X122972516Y-85643336D01* X122991400Y-85548399D01* X122991400Y-85451601D01* X124008600Y-85451601D01* X124008600Y-85548399D01* X124027484Y-85643336D01* X124064527Y-85732765D01* X124118304Y-85813249D01* X124186751Y-85881696D01* X124267235Y-85935473D01* X124356664Y-85972516D01* X124451601Y-85991400D01* X124548399Y-85991400D01* X124643336Y-85972516D01* X124732765Y-85935473D01* X124813249Y-85881696D01* X124881696Y-85813249D01* X124935473Y-85732765D01* X124972516Y-85643336D01* X124991400Y-85548399D01* X124991400Y-85451601D01* X125008600Y-85451601D01* X125008600Y-85548399D01* X125027484Y-85643336D01* X125064527Y-85732765D01* X125118304Y-85813249D01* X125186751Y-85881696D01* X125267235Y-85935473D01* X125356664Y-85972516D01* X125451601Y-85991400D01* X125548399Y-85991400D01* X125643336Y-85972516D01* X125732765Y-85935473D01* X125813249Y-85881696D01* X125881696Y-85813249D01* X125935473Y-85732765D01* X125971164Y-85646598D01* X130657800Y-85646598D01* X130657800Y-85753402D01* X130678637Y-85858154D01* X130719509Y-85956828D01* X130778846Y-86045632D01* X130854368Y-86121154D01* X130943172Y-86180491D01* X131041846Y-86221363D01* X131146598Y-86242200D01* X131253402Y-86242200D01* X131358154Y-86221363D01* X131456828Y-86180491D01* X131545632Y-86121154D01* X131621154Y-86045632D01* X131680491Y-85956828D01* X131721363Y-85858154D01* X131742200Y-85753402D01* X131742200Y-85646598D01* X131722309Y-85546598D01* X133957800Y-85546598D01* X133957800Y-85653402D01* X133978637Y-85758154D01* X134019509Y-85856828D01* X134078846Y-85945632D01* X134154368Y-86021154D01* X134243172Y-86080491D01* X134341846Y-86121363D01* X134446598Y-86142200D01* X134553402Y-86142200D01* X134658154Y-86121363D01* X134756828Y-86080491D01* X134845632Y-86021154D01* X134921154Y-85945632D01* X134953982Y-85896500D01* X140156800Y-85896500D01* X140156800Y-86003500D01* X140177675Y-86108446D01* X140218623Y-86207302D01* X140278069Y-86296270D01* X140353730Y-86371931D01* X140442698Y-86431377D01* X140541554Y-86472325D01* X140646500Y-86493200D01* X140753500Y-86493200D01* X140858446Y-86472325D01* X140920555Y-86446598D01* X143557800Y-86446598D01* X143557800Y-86553402D01* X143578637Y-86658154D01* X143619509Y-86756828D01* X143678846Y-86845632D01* X143754368Y-86921154D01* X143843172Y-86980491D01* X143941846Y-87021363D01* X144046598Y-87042200D01* X144153402Y-87042200D01* X144258154Y-87021363D01* X144356828Y-86980491D01* X144445632Y-86921154D01* X144521154Y-86845632D01* X144580491Y-86756828D01* X144621363Y-86658154D01* X144642200Y-86553402D01* X144642200Y-86446598D01* X144621363Y-86341846D01* X144580491Y-86243172D01* X144521154Y-86154368D01* X144445632Y-86078846D01* X144356828Y-86019509D01* X144258154Y-85978637D01* X144153402Y-85957800D01* X144046598Y-85957800D01* X143941846Y-85978637D01* X143843172Y-86019509D01* X143754368Y-86078846D01* X143678846Y-86154368D01* X143619509Y-86243172D01* X143578637Y-86341846D01* X143557800Y-86446598D01* X140920555Y-86446598D01* X140957302Y-86431377D01* X141046270Y-86371931D01* X141121931Y-86296270D01* X141181377Y-86207302D01* X141222325Y-86108446D01* X141243200Y-86003500D01* X141243200Y-85896500D01* X141222325Y-85791554D01* X141181377Y-85692698D01* X141121931Y-85603730D01* X141046270Y-85528069D01* X140957302Y-85468623D01* X140858446Y-85427675D01* X140753500Y-85406800D01* X140646500Y-85406800D01* X140541554Y-85427675D01* X140442698Y-85468623D01* X140353730Y-85528069D01* X140278069Y-85603730D01* X140218623Y-85692698D01* X140177675Y-85791554D01* X140156800Y-85896500D01* X134953982Y-85896500D01* X134980491Y-85856828D01* X135021363Y-85758154D01* X135042200Y-85653402D01* X135042200Y-85546598D01* X135021363Y-85441846D01* X134980491Y-85343172D01* X134921154Y-85254368D01* X134845632Y-85178846D01* X134756828Y-85119509D01* X134658154Y-85078637D01* X134553402Y-85057800D01* X134446598Y-85057800D01* X134341846Y-85078637D01* X134243172Y-85119509D01* X134154368Y-85178846D01* X134078846Y-85254368D01* X134019509Y-85343172D01* X133978637Y-85441846D01* X133957800Y-85546598D01* X131722309Y-85546598D01* X131721363Y-85541846D01* X131680491Y-85443172D01* X131621154Y-85354368D01* X131545632Y-85278846D01* X131456828Y-85219509D01* X131358154Y-85178637D01* X131253402Y-85157800D01* X131146598Y-85157800D01* X131041846Y-85178637D01* X130943172Y-85219509D01* X130854368Y-85278846D01* X130778846Y-85354368D01* X130719509Y-85443172D01* X130678637Y-85541846D01* X130657800Y-85646598D01* X125971164Y-85646598D01* X125972516Y-85643336D01* X125991400Y-85548399D01* X125991400Y-85451601D01* X125972516Y-85356664D01* X125935473Y-85267235D01* X125881696Y-85186751D01* X125813249Y-85118304D01* X125732765Y-85064527D01* X125643336Y-85027484D01* X125548399Y-85008600D01* X125451601Y-85008600D01* X125356664Y-85027484D01* X125267235Y-85064527D01* X125186751Y-85118304D01* X125118304Y-85186751D01* X125064527Y-85267235D01* X125027484Y-85356664D01* X125008600Y-85451601D01* X124991400Y-85451601D01* X124972516Y-85356664D01* X124935473Y-85267235D01* X124881696Y-85186751D01* X124813249Y-85118304D01* X124732765Y-85064527D01* X124643336Y-85027484D01* X124548399Y-85008600D01* X124451601Y-85008600D01* X124356664Y-85027484D01* X124267235Y-85064527D01* X124186751Y-85118304D01* X124118304Y-85186751D01* X124064527Y-85267235D01* X124027484Y-85356664D01* X124008600Y-85451601D01* X122991400Y-85451601D01* X122972516Y-85356664D01* X122935473Y-85267235D01* X122881696Y-85186751D01* X122813249Y-85118304D01* X122732765Y-85064527D01* X122643336Y-85027484D01* X122548399Y-85008600D01* X122451601Y-85008600D01* X122356664Y-85027484D01* X122267235Y-85064527D01* X122186751Y-85118304D01* X122118304Y-85186751D01* X122064527Y-85267235D01* X122027484Y-85356664D01* X122008600Y-85451601D01* X118991400Y-85451601D01* X118972516Y-85356664D01* X118935473Y-85267235D01* X118881696Y-85186751D01* X118813249Y-85118304D01* X118732765Y-85064527D01* X118643336Y-85027484D01* X118548399Y-85008600D01* X118451601Y-85008600D01* X118356664Y-85027484D01* X118267235Y-85064527D01* X118186751Y-85118304D01* X118118304Y-85186751D01* X118064527Y-85267235D01* X118027484Y-85356664D01* X118008600Y-85451601D01* X116991400Y-85451601D01* X116972516Y-85356664D01* X116935473Y-85267235D01* X116881696Y-85186751D01* X116813249Y-85118304D01* X116732765Y-85064527D01* X116643336Y-85027484D01* X116548399Y-85008600D01* X116451601Y-85008600D01* X116356664Y-85027484D01* X116267235Y-85064527D01* X116186751Y-85118304D01* X116118304Y-85186751D01* X116064527Y-85267235D01* X116027484Y-85356664D01* X116008600Y-85451601D01* X110085000Y-85451601D01* X110085000Y-84763405D01* X110118304Y-84813249D01* X110186751Y-84881696D01* X110267235Y-84935473D01* X110356664Y-84972516D01* X110451601Y-84991400D01* X110548399Y-84991400D01* X110643336Y-84972516D01* X110732765Y-84935473D01* X110813249Y-84881696D01* X110881696Y-84813249D01* X110935473Y-84732765D01* X110972516Y-84643336D01* X110991400Y-84548399D01* X110991400Y-84451601D01* X116008600Y-84451601D01* X116008600Y-84548399D01* X116027484Y-84643336D01* X116064527Y-84732765D01* X116118304Y-84813249D01* X116186751Y-84881696D01* X116267235Y-84935473D01* X116356664Y-84972516D01* X116451601Y-84991400D01* X116548399Y-84991400D01* X116643336Y-84972516D01* X116732765Y-84935473D01* X116813249Y-84881696D01* X116881696Y-84813249D01* X116935473Y-84732765D01* X116972516Y-84643336D01* X116991400Y-84548399D01* X116991400Y-84451601D01* X119008600Y-84451601D01* X119008600Y-84548399D01* X119027484Y-84643336D01* X119064527Y-84732765D01* X119118304Y-84813249D01* X119186751Y-84881696D01* X119267235Y-84935473D01* X119356664Y-84972516D01* X119451601Y-84991400D01* X119548399Y-84991400D01* X119643336Y-84972516D01* X119732765Y-84935473D01* X119813249Y-84881696D01* X119881696Y-84813249D01* X119935473Y-84732765D01* X119972516Y-84643336D01* X119991400Y-84548399D01* X119991400Y-84451601D01* X120008600Y-84451601D01* X120008600Y-84548399D01* X120027484Y-84643336D01* X120064527Y-84732765D01* X120118304Y-84813249D01* X120186751Y-84881696D01* X120267235Y-84935473D01* X120356664Y-84972516D01* X120451601Y-84991400D01* X120548399Y-84991400D01* X120643336Y-84972516D01* X120732765Y-84935473D01* X120813249Y-84881696D01* X120881696Y-84813249D01* X120935473Y-84732765D01* X120972516Y-84643336D01* X120991400Y-84548399D01* X120991400Y-84451601D01* X121008600Y-84451601D01* X121008600Y-84548399D01* X121027484Y-84643336D01* X121064527Y-84732765D01* X121118304Y-84813249D01* X121186751Y-84881696D01* X121267235Y-84935473D01* X121356664Y-84972516D01* X121451601Y-84991400D01* X121548399Y-84991400D01* X121643336Y-84972516D01* X121732765Y-84935473D01* X121813249Y-84881696D01* X121881696Y-84813249D01* X121935473Y-84732765D01* X121972516Y-84643336D01* X121991400Y-84548399D01* X121991400Y-84451601D01* X122008600Y-84451601D01* X122008600Y-84548399D01* X122027484Y-84643336D01* X122064527Y-84732765D01* X122118304Y-84813249D01* X122186751Y-84881696D01* X122267235Y-84935473D01* X122356664Y-84972516D01* X122451601Y-84991400D01* X122548399Y-84991400D01* X122643336Y-84972516D01* X122732765Y-84935473D01* X122813249Y-84881696D01* X122881696Y-84813249D01* X122935473Y-84732765D01* X122972516Y-84643336D01* X122991400Y-84548399D01* X122991400Y-84451601D01* X124008600Y-84451601D01* X124008600Y-84548399D01* X124027484Y-84643336D01* X124064527Y-84732765D01* X124118304Y-84813249D01* X124186751Y-84881696D01* X124267235Y-84935473D01* X124356664Y-84972516D01* X124451601Y-84991400D01* X124548399Y-84991400D01* X124643336Y-84972516D01* X124732765Y-84935473D01* X124813249Y-84881696D01* X124881696Y-84813249D01* X124935473Y-84732765D01* X124972516Y-84643336D01* X124991400Y-84548399D01* X124991400Y-84451601D01* X125008600Y-84451601D01* X125008600Y-84548399D01* X125027484Y-84643336D01* X125064527Y-84732765D01* X125118304Y-84813249D01* X125186751Y-84881696D01* X125267235Y-84935473D01* X125356664Y-84972516D01* X125451601Y-84991400D01* X125548399Y-84991400D01* X125643336Y-84972516D01* X125732765Y-84935473D01* X125813249Y-84881696D01* X125881696Y-84813249D01* X125935473Y-84732765D01* X125972516Y-84643336D01* X125991400Y-84548399D01* X125991400Y-84451601D01* X125991397Y-84451581D01* X126008600Y-84451581D01* X126008600Y-84548379D01* X126027484Y-84643316D01* X126064527Y-84732745D01* X126118304Y-84813229D01* X126186751Y-84881676D01* X126267235Y-84935453D01* X126356664Y-84972496D01* X126451601Y-84991380D01* X126548399Y-84991380D01* X126643336Y-84972496D01* X126732765Y-84935453D01* X126813249Y-84881676D01* X126881696Y-84813229D01* X126935473Y-84732745D01* X126972516Y-84643316D01* X126991400Y-84548379D01* X126991400Y-84451581D01* X126972516Y-84356644D01* X126935473Y-84267215D01* X126881696Y-84186731D01* X126813249Y-84118284D01* X126732765Y-84064507D01* X126643336Y-84027464D01* X126548399Y-84008580D01* X126451601Y-84008580D01* X126356664Y-84027464D01* X126267235Y-84064507D01* X126186751Y-84118284D01* X126118304Y-84186731D01* X126064527Y-84267215D01* X126027484Y-84356644D01* X126008600Y-84451581D01* X125991397Y-84451581D01* X125972516Y-84356664D01* X125935473Y-84267235D01* X125881696Y-84186751D01* X125813249Y-84118304D01* X125732765Y-84064527D01* X125643336Y-84027484D01* X125548399Y-84008600D01* X125451601Y-84008600D01* X125356664Y-84027484D01* X125267235Y-84064527D01* X125186751Y-84118304D01* X125118304Y-84186751D01* X125064527Y-84267235D01* X125027484Y-84356664D01* X125008600Y-84451601D01* X124991400Y-84451601D01* X124972516Y-84356664D01* X124935473Y-84267235D01* X124881696Y-84186751D01* X124813249Y-84118304D01* X124732765Y-84064527D01* X124643336Y-84027484D01* X124548399Y-84008600D01* X124451601Y-84008600D01* X124356664Y-84027484D01* X124267235Y-84064527D01* X124186751Y-84118304D01* X124118304Y-84186751D01* X124064527Y-84267235D01* X124027484Y-84356664D01* X124008600Y-84451601D01* X122991400Y-84451601D01* X122972516Y-84356664D01* X122935473Y-84267235D01* X122881696Y-84186751D01* X122813249Y-84118304D01* X122732765Y-84064527D01* X122643336Y-84027484D01* X122548399Y-84008600D01* X122451601Y-84008600D01* X122356664Y-84027484D01* X122267235Y-84064527D01* X122186751Y-84118304D01* X122118304Y-84186751D01* X122064527Y-84267235D01* X122027484Y-84356664D01* X122008600Y-84451601D01* X121991400Y-84451601D01* X121972516Y-84356664D01* X121935473Y-84267235D01* X121881696Y-84186751D01* X121813249Y-84118304D01* X121732765Y-84064527D01* X121643336Y-84027484D01* X121548399Y-84008600D01* X121451601Y-84008600D01* X121356664Y-84027484D01* X121267235Y-84064527D01* X121186751Y-84118304D01* X121118304Y-84186751D01* X121064527Y-84267235D01* X121027484Y-84356664D01* X121008600Y-84451601D01* X120991400Y-84451601D01* X120972516Y-84356664D01* X120935473Y-84267235D01* X120881696Y-84186751D01* X120813249Y-84118304D01* X120732765Y-84064527D01* X120643336Y-84027484D01* X120548399Y-84008600D01* X120451601Y-84008600D01* X120356664Y-84027484D01* X120267235Y-84064527D01* X120186751Y-84118304D01* X120118304Y-84186751D01* X120064527Y-84267235D01* X120027484Y-84356664D01* X120008600Y-84451601D01* X119991400Y-84451601D01* X119972516Y-84356664D01* X119935473Y-84267235D01* X119881696Y-84186751D01* X119813249Y-84118304D01* X119732765Y-84064527D01* X119643336Y-84027484D01* X119548399Y-84008600D01* X119451601Y-84008600D01* X119356664Y-84027484D01* X119267235Y-84064527D01* X119186751Y-84118304D01* X119118304Y-84186751D01* X119064527Y-84267235D01* X119027484Y-84356664D01* X119008600Y-84451601D01* X116991400Y-84451601D01* X116972516Y-84356664D01* X116935473Y-84267235D01* X116881696Y-84186751D01* X116813249Y-84118304D01* X116732765Y-84064527D01* X116643336Y-84027484D01* X116548399Y-84008600D01* X116451601Y-84008600D01* X116356664Y-84027484D01* X116267235Y-84064527D01* X116186751Y-84118304D01* X116118304Y-84186751D01* X116064527Y-84267235D01* X116027484Y-84356664D01* X116008600Y-84451601D01* X110991400Y-84451601D01* X110972516Y-84356664D01* X110935473Y-84267235D01* X110881696Y-84186751D01* X110813249Y-84118304D01* X110732765Y-84064527D01* X110643336Y-84027484D01* X110548399Y-84008600D01* X110451601Y-84008600D01* X110356664Y-84027484D01* X110267235Y-84064527D01* X110186751Y-84118304D01* X110118304Y-84186751D01* X110085000Y-84236595D01* X110085000Y-83451601D01* X111008600Y-83451601D01* X111008600Y-83548399D01* X111027484Y-83643336D01* X111064527Y-83732765D01* X111118304Y-83813249D01* X111186751Y-83881696D01* X111267235Y-83935473D01* X111356664Y-83972516D01* X111451601Y-83991400D01* X111548399Y-83991400D01* X111643336Y-83972516D01* X111732765Y-83935473D01* X111813249Y-83881696D01* X111881696Y-83813249D01* X111935473Y-83732765D01* X111972516Y-83643336D01* X111991400Y-83548399D01* X111991400Y-83451601D01* X114008600Y-83451601D01* X114008600Y-83548399D01* X114027484Y-83643336D01* X114064527Y-83732765D01* X114118304Y-83813249D01* X114186751Y-83881696D01* X114267235Y-83935473D01* X114356664Y-83972516D01* X114451601Y-83991400D01* X114548399Y-83991400D01* X114643336Y-83972516D01* X114732765Y-83935473D01* X114813249Y-83881696D01* X114881696Y-83813249D01* X114935473Y-83732765D01* X114972516Y-83643336D01* X114991400Y-83548399D01* X114991400Y-83451601D01* X117008600Y-83451601D01* X117008600Y-83548399D01* X117027484Y-83643336D01* X117064527Y-83732765D01* X117118304Y-83813249D01* X117186751Y-83881696D01* X117267235Y-83935473D01* X117356664Y-83972516D01* X117451601Y-83991400D01* X117548399Y-83991400D01* X117643336Y-83972516D01* X117732765Y-83935473D01* X117813249Y-83881696D01* X117881696Y-83813249D01* X117935473Y-83732765D01* X117972516Y-83643336D01* X117991400Y-83548399D01* X117991400Y-83451601D01* X121008600Y-83451601D01* X121008600Y-83548399D01* X121027484Y-83643336D01* X121064527Y-83732765D01* X121118304Y-83813249D01* X121186751Y-83881696D01* X121267235Y-83935473D01* X121356664Y-83972516D01* X121451601Y-83991400D01* X121548399Y-83991400D01* X121643336Y-83972516D01* X121732765Y-83935473D01* X121813249Y-83881696D01* X121881696Y-83813249D01* X121935473Y-83732765D01* X121972516Y-83643336D01* X121991400Y-83548399D01* X121991400Y-83451601D01* X122008600Y-83451601D01* X122008600Y-83548399D01* X122027484Y-83643336D01* X122064527Y-83732765D01* X122118304Y-83813249D01* X122186751Y-83881696D01* X122267235Y-83935473D01* X122356664Y-83972516D01* X122451601Y-83991400D01* X122548399Y-83991400D01* X122643336Y-83972516D01* X122732765Y-83935473D01* X122813249Y-83881696D01* X122881696Y-83813249D01* X122935473Y-83732765D01* X122972516Y-83643336D01* X122991400Y-83548399D01* X122991400Y-83451601D01* X123008600Y-83451601D01* X123008600Y-83548399D01* X123027484Y-83643336D01* X123064527Y-83732765D01* X123118304Y-83813249D01* X123186751Y-83881696D01* X123267235Y-83935473D01* X123356664Y-83972516D01* X123451601Y-83991400D01* X123548399Y-83991400D01* X123643336Y-83972516D01* X123732765Y-83935473D01* X123813249Y-83881696D01* X123881696Y-83813249D01* X123935473Y-83732765D01* X123972516Y-83643336D01* X123991400Y-83548399D01* X123991400Y-83451601D01* X124008600Y-83451601D01* X124008600Y-83548399D01* X124027484Y-83643336D01* X124064527Y-83732765D01* X124118304Y-83813249D01* X124186751Y-83881696D01* X124267235Y-83935473D01* X124356664Y-83972516D01* X124451601Y-83991400D01* X124548399Y-83991400D01* X124643336Y-83972516D01* X124732765Y-83935473D01* X124813249Y-83881696D01* X124881696Y-83813249D01* X124935473Y-83732765D01* X124972516Y-83643336D01* X124991400Y-83548399D01* X124991400Y-83451601D01* X125008600Y-83451601D01* X125008600Y-83548399D01* X125027484Y-83643336D01* X125064527Y-83732765D01* X125118304Y-83813249D01* X125186751Y-83881696D01* X125267235Y-83935473D01* X125356664Y-83972516D01* X125451601Y-83991400D01* X125548399Y-83991400D01* X125643336Y-83972516D01* X125732765Y-83935473D01* X125813249Y-83881696D01* X125881696Y-83813249D01* X125935473Y-83732765D01* X125972516Y-83643336D01* X125991400Y-83548399D01* X125991400Y-83451601D01* X126008600Y-83451601D01* X126008600Y-83548399D01* X126027484Y-83643336D01* X126064527Y-83732765D01* X126118304Y-83813249D01* X126186751Y-83881696D01* X126267235Y-83935473D01* X126356664Y-83972516D01* X126451601Y-83991400D01* X126548399Y-83991400D01* X126643336Y-83972516D01* X126732765Y-83935473D01* X126813249Y-83881696D01* X126881696Y-83813249D01* X126935473Y-83732765D01* X126972516Y-83643336D01* X126991400Y-83548399D01* X126991400Y-83451601D01* X127008618Y-83451601D01* X127008618Y-83548399D01* X127027502Y-83643336D01* X127064545Y-83732765D01* X127118322Y-83813249D01* X127186769Y-83881696D01* X127267253Y-83935473D01* X127356682Y-83972516D01* X127451619Y-83991400D01* X127548417Y-83991400D01* X127643354Y-83972516D01* X127732783Y-83935473D01* X127813267Y-83881696D01* X127881714Y-83813249D01* X127935491Y-83732765D01* X127972534Y-83643336D01* X127991418Y-83548399D01* X127991418Y-83451601D01* X130308600Y-83451601D01* X130308600Y-83548399D01* X130327484Y-83643336D01* X130364527Y-83732765D01* X130418304Y-83813249D01* X130486751Y-83881696D01* X130567235Y-83935473D01* X130656664Y-83972516D01* X130751601Y-83991400D01* X130848399Y-83991400D01* X130943336Y-83972516D01* X131032765Y-83935473D01* X131113249Y-83881696D01* X131181696Y-83813249D01* X131235473Y-83732765D01* X131272516Y-83643336D01* X131291400Y-83548399D01* X131291400Y-83451601D01* X131272516Y-83356664D01* X131268347Y-83346598D01* X134257800Y-83346598D01* X134257800Y-83453402D01* X134278637Y-83558154D01* X134319509Y-83656828D01* X134378846Y-83745632D01* X134454368Y-83821154D01* X134543172Y-83880491D01* X134641846Y-83921363D01* X134746598Y-83942200D01* X134853402Y-83942200D01* X134958154Y-83921363D01* X135015321Y-83897684D01* X134978637Y-83986246D01* X134957800Y-84090998D01* X134957800Y-84197802D01* X134978637Y-84302554D01* X135019509Y-84401228D01* X135078846Y-84490032D01* X135088814Y-84500000D01* X135078846Y-84509968D01* X135019509Y-84598772D01* X134978637Y-84697446D01* X134957800Y-84802198D01* X134957800Y-84909002D01* X134978637Y-85013754D01* X135019509Y-85112428D01* X135078846Y-85201232D01* X135154368Y-85276754D01* X135243172Y-85336091D01* X135341846Y-85376963D01* X135446598Y-85397800D01* X135553402Y-85397800D01* X135658154Y-85376963D01* X135756828Y-85336091D01* X135845632Y-85276754D01* X135921154Y-85201232D01* X135980491Y-85112428D01* X136021363Y-85013754D01* X136042200Y-84909002D01* X136042200Y-84802198D01* X136021363Y-84697446D01* X135980491Y-84598772D01* X135921154Y-84509968D01* X135911186Y-84500000D01* X135921154Y-84490032D01* X135980491Y-84401228D01* X136021363Y-84302554D01* X136032513Y-84246500D01* X138556800Y-84246500D01* X138556800Y-84353500D01* X138577675Y-84458446D01* X138618623Y-84557302D01* X138678069Y-84646270D01* X138753730Y-84721931D01* X138842698Y-84781377D01* X138941554Y-84822325D01* X139046500Y-84843200D01* X139153500Y-84843200D01* X139258446Y-84822325D01* X139357302Y-84781377D01* X139446270Y-84721931D01* X139521931Y-84646270D01* X139581377Y-84557302D01* X139622325Y-84458446D01* X139643200Y-84353500D01* X139643200Y-84246500D01* X139622325Y-84141554D01* X139581377Y-84042698D01* X139521931Y-83953730D01* X139446270Y-83878069D01* X139357302Y-83818623D01* X139258446Y-83777675D01* X139153500Y-83756800D01* X139046500Y-83756800D01* X138941554Y-83777675D01* X138842698Y-83818623D01* X138753730Y-83878069D01* X138678069Y-83953730D01* X138618623Y-84042698D01* X138577675Y-84141554D01* X138556800Y-84246500D01* X136032513Y-84246500D01* X136042200Y-84197802D01* X136042200Y-84090998D01* X136021363Y-83986246D01* X135980491Y-83887572D01* X135921154Y-83798768D01* X135845632Y-83723246D01* X135756828Y-83663909D01* X135658154Y-83623037D01* X135553402Y-83602200D01* X135446598Y-83602200D01* X135341846Y-83623037D01* X135284679Y-83646716D01* X135321363Y-83558154D01* X135342200Y-83453402D01* X135342200Y-83346598D01* X135321363Y-83241846D01* X135280491Y-83143172D01* X135221154Y-83054368D01* X135145632Y-82978846D01* X135056828Y-82919509D01* X134958154Y-82878637D01* X134853402Y-82857800D01* X134746598Y-82857800D01* X134641846Y-82878637D01* X134543172Y-82919509D01* X134454368Y-82978846D01* X134378846Y-83054368D01* X134319509Y-83143172D01* X134278637Y-83241846D01* X134257800Y-83346598D01* X131268347Y-83346598D01* X131235473Y-83267235D01* X131181696Y-83186751D01* X131113249Y-83118304D01* X131032765Y-83064527D01* X130943336Y-83027484D01* X130848399Y-83008600D01* X130751601Y-83008600D01* X130656664Y-83027484D01* X130567235Y-83064527D01* X130486751Y-83118304D01* X130418304Y-83186751D01* X130364527Y-83267235D01* X130327484Y-83356664D01* X130308600Y-83451601D01* X127991418Y-83451601D01* X127972534Y-83356664D01* X127935491Y-83267235D01* X127881714Y-83186751D01* X127813267Y-83118304D01* X127732783Y-83064527D01* X127643354Y-83027484D01* X127548417Y-83008600D01* X127451619Y-83008600D01* X127356682Y-83027484D01* X127267253Y-83064527D01* X127186769Y-83118304D01* X127118322Y-83186751D01* X127064545Y-83267235D01* X127027502Y-83356664D01* X127008618Y-83451601D01* X126991400Y-83451601D01* X126972516Y-83356664D01* X126935473Y-83267235D01* X126881696Y-83186751D01* X126813249Y-83118304D01* X126732765Y-83064527D01* X126643336Y-83027484D01* X126548399Y-83008600D01* X126451601Y-83008600D01* X126356664Y-83027484D01* X126267235Y-83064527D01* X126186751Y-83118304D01* X126118304Y-83186751D01* X126064527Y-83267235D01* X126027484Y-83356664D01* X126008600Y-83451601D01* X125991400Y-83451601D01* X125972516Y-83356664D01* X125935473Y-83267235D01* X125881696Y-83186751D01* X125813249Y-83118304D01* X125732765Y-83064527D01* X125643336Y-83027484D01* X125548399Y-83008600D01* X125451601Y-83008600D01* X125356664Y-83027484D01* X125267235Y-83064527D01* X125186751Y-83118304D01* X125118304Y-83186751D01* X125064527Y-83267235D01* X125027484Y-83356664D01* X125008600Y-83451601D01* X124991400Y-83451601D01* X124972516Y-83356664D01* X124935473Y-83267235D01* X124881696Y-83186751D01* X124813249Y-83118304D01* X124732765Y-83064527D01* X124643336Y-83027484D01* X124548399Y-83008600D01* X124451601Y-83008600D01* X124356664Y-83027484D01* X124267235Y-83064527D01* X124186751Y-83118304D01* X124118304Y-83186751D01* X124064527Y-83267235D01* X124027484Y-83356664D01* X124008600Y-83451601D01* X123991400Y-83451601D01* X123972516Y-83356664D01* X123935473Y-83267235D01* X123881696Y-83186751D01* X123813249Y-83118304D01* X123732765Y-83064527D01* X123643336Y-83027484D01* X123548399Y-83008600D01* X123451601Y-83008600D01* X123356664Y-83027484D01* X123267235Y-83064527D01* X123186751Y-83118304D01* X123118304Y-83186751D01* X123064527Y-83267235D01* X123027484Y-83356664D01* X123008600Y-83451601D01* X122991400Y-83451601D01* X122972516Y-83356664D01* X122935473Y-83267235D01* X122881696Y-83186751D01* X122813249Y-83118304D01* X122732765Y-83064527D01* X122643336Y-83027484D01* X122548399Y-83008600D01* X122451601Y-83008600D01* X122356664Y-83027484D01* X122267235Y-83064527D01* X122186751Y-83118304D01* X122118304Y-83186751D01* X122064527Y-83267235D01* X122027484Y-83356664D01* X122008600Y-83451601D01* X121991400Y-83451601D01* X121972516Y-83356664D01* X121935473Y-83267235D01* X121881696Y-83186751D01* X121813249Y-83118304D01* X121732765Y-83064527D01* X121643336Y-83027484D01* X121548399Y-83008600D01* X121451601Y-83008600D01* X121356664Y-83027484D01* X121267235Y-83064527D01* X121186751Y-83118304D01* X121118304Y-83186751D01* X121064527Y-83267235D01* X121027484Y-83356664D01* X121008600Y-83451601D01* X117991400Y-83451601D01* X117972516Y-83356664D01* X117935473Y-83267235D01* X117881696Y-83186751D01* X117813249Y-83118304D01* X117732765Y-83064527D01* X117643336Y-83027484D01* X117548399Y-83008600D01* X117451601Y-83008600D01* X117356664Y-83027484D01* X117267235Y-83064527D01* X117186751Y-83118304D01* X117118304Y-83186751D01* X117064527Y-83267235D01* X117027484Y-83356664D01* X117008600Y-83451601D01* X114991400Y-83451601D01* X114972516Y-83356664D01* X114935473Y-83267235D01* X114881696Y-83186751D01* X114813249Y-83118304D01* X114732765Y-83064527D01* X114643336Y-83027484D01* X114548399Y-83008600D01* X114451601Y-83008600D01* X114356664Y-83027484D01* X114267235Y-83064527D01* X114186751Y-83118304D01* X114118304Y-83186751D01* X114064527Y-83267235D01* X114027484Y-83356664D01* X114008600Y-83451601D01* X111991400Y-83451601D01* X111972516Y-83356664D01* X111935473Y-83267235D01* X111881696Y-83186751D01* X111813249Y-83118304D01* X111732765Y-83064527D01* X111643336Y-83027484D01* X111548399Y-83008600D01* X111451601Y-83008600D01* X111356664Y-83027484D01* X111267235Y-83064527D01* X111186751Y-83118304D01* X111118304Y-83186751D01* X111064527Y-83267235D01* X111027484Y-83356664D01* X111008600Y-83451601D01* X110085000Y-83451601D01* X110085000Y-82451601D01* X112008600Y-82451601D01* X112008600Y-82548399D01* X112027484Y-82643336D01* X112064527Y-82732765D01* X112118304Y-82813249D01* X112186751Y-82881696D01* X112267235Y-82935473D01* X112356664Y-82972516D01* X112451601Y-82991400D01* X112548399Y-82991400D01* X112643336Y-82972516D01* X112732765Y-82935473D01* X112813249Y-82881696D01* X112881696Y-82813249D01* X112935473Y-82732765D01* X112972516Y-82643336D01* X112991400Y-82548399D01* X112991400Y-82451601D01* X117008600Y-82451601D01* X117008600Y-82548399D01* X117027484Y-82643336D01* X117064527Y-82732765D01* X117118304Y-82813249D01* X117186751Y-82881696D01* X117267235Y-82935473D01* X117356664Y-82972516D01* X117451601Y-82991400D01* X117548399Y-82991400D01* X117643336Y-82972516D01* X117732765Y-82935473D01* X117813249Y-82881696D01* X117881696Y-82813249D01* X117935473Y-82732765D01* X117972516Y-82643336D01* X117991400Y-82548399D01* X117991400Y-82451601D01* X119008600Y-82451601D01* X119008600Y-82548399D01* X119027484Y-82643336D01* X119064527Y-82732765D01* X119118304Y-82813249D01* X119186751Y-82881696D01* X119267235Y-82935473D01* X119356664Y-82972516D01* X119451601Y-82991400D01* X119548399Y-82991400D01* X119643336Y-82972516D01* X119732765Y-82935473D01* X119813249Y-82881696D01* X119881696Y-82813249D01* X119935473Y-82732765D01* X119972516Y-82643336D01* X119991400Y-82548399D01* X119991400Y-82451601D01* X121008600Y-82451601D01* X121008600Y-82548399D01* X121027484Y-82643336D01* X121064527Y-82732765D01* X121118304Y-82813249D01* X121186751Y-82881696D01* X121267235Y-82935473D01* X121356664Y-82972516D01* X121451601Y-82991400D01* X121548399Y-82991400D01* X121643336Y-82972516D01* X121732765Y-82935473D01* X121813249Y-82881696D01* X121881696Y-82813249D01* X121935473Y-82732765D01* X121972516Y-82643336D01* X121991400Y-82548399D01* X121991400Y-82451601D01* X123008600Y-82451601D01* X123008600Y-82548399D01* X123027484Y-82643336D01* X123064527Y-82732765D01* X123118304Y-82813249D01* X123186751Y-82881696D01* X123267235Y-82935473D01* X123356664Y-82972516D01* X123451601Y-82991400D01* X123548399Y-82991400D01* X123643336Y-82972516D01* X123732765Y-82935473D01* X123813249Y-82881696D01* X123881696Y-82813249D01* X123935473Y-82732765D01* X123972516Y-82643336D01* X123991400Y-82548399D01* X123991400Y-82451631D01* X124008600Y-82451631D01* X124008600Y-82548429D01* X124027484Y-82643366D01* X124064527Y-82732795D01* X124118304Y-82813279D01* X124186751Y-82881726D01* X124267235Y-82935503D01* X124356664Y-82972546D01* X124451601Y-82991430D01* X124548399Y-82991430D01* X124643336Y-82972546D01* X124732765Y-82935503D01* X124813249Y-82881726D01* X124881696Y-82813279D01* X124935473Y-82732795D01* X124972516Y-82643366D01* X124991400Y-82548429D01* X124991400Y-82451631D01* X124991395Y-82451601D01* X125008600Y-82451601D01* X125008600Y-82548399D01* X125027484Y-82643336D01* X125064527Y-82732765D01* X125118304Y-82813249D01* X125186751Y-82881696D01* X125267235Y-82935473D01* X125356664Y-82972516D01* X125451601Y-82991400D01* X125548399Y-82991400D01* X125643336Y-82972516D01* X125732765Y-82935473D01* X125813249Y-82881696D01* X125881696Y-82813249D01* X125935473Y-82732765D01* X125972516Y-82643336D01* X125991400Y-82548399D01* X125991400Y-82451601D01* X125972516Y-82356664D01* X125968306Y-82346500D01* X143306800Y-82346500D01* X143306800Y-82453500D01* X143327675Y-82558446D01* X143368623Y-82657302D01* X143428069Y-82746270D01* X143503730Y-82821931D01* X143592698Y-82881377D01* X143691554Y-82922325D01* X143796500Y-82943200D01* X143903500Y-82943200D01* X144008446Y-82922325D01* X144107302Y-82881377D01* X144196270Y-82821931D01* X144271931Y-82746270D01* X144331377Y-82657302D01* X144372325Y-82558446D01* X144393200Y-82453500D01* X144393200Y-82346500D01* X144372325Y-82241554D01* X144331377Y-82142698D01* X144271931Y-82053730D01* X144196270Y-81978069D01* X144107302Y-81918623D01* X144008446Y-81877675D01* X143903500Y-81856800D01* X143796500Y-81856800D01* X143691554Y-81877675D01* X143592698Y-81918623D01* X143503730Y-81978069D01* X143428069Y-82053730D01* X143368623Y-82142698D01* X143327675Y-82241554D01* X143306800Y-82346500D01* X125968306Y-82346500D01* X125935473Y-82267235D01* X125881696Y-82186751D01* X125813249Y-82118304D01* X125732765Y-82064527D01* X125643336Y-82027484D01* X125548399Y-82008600D01* X125451601Y-82008600D01* X125356664Y-82027484D01* X125267235Y-82064527D01* X125186751Y-82118304D01* X125118304Y-82186751D01* X125064527Y-82267235D01* X125027484Y-82356664D01* X125008600Y-82451601D01* X124991395Y-82451601D01* X124972516Y-82356694D01* X124935473Y-82267265D01* X124881696Y-82186781D01* X124813249Y-82118334D01* X124732765Y-82064557D01* X124643336Y-82027514D01* X124548399Y-82008630D01* X124451601Y-82008630D01* X124356664Y-82027514D01* X124267235Y-82064557D01* X124186751Y-82118334D01* X124118304Y-82186781D01* X124064527Y-82267265D01* X124027484Y-82356694D01* X124008600Y-82451631D01* X123991400Y-82451631D01* X123991400Y-82451601D01* X123972516Y-82356664D01* X123935473Y-82267235D01* X123881696Y-82186751D01* X123813249Y-82118304D01* X123732765Y-82064527D01* X123643336Y-82027484D01* X123548399Y-82008600D01* X123451601Y-82008600D01* X123356664Y-82027484D01* X123267235Y-82064527D01* X123186751Y-82118304D01* X123118304Y-82186751D01* X123064527Y-82267235D01* X123027484Y-82356664D01* X123008600Y-82451601D01* X121991400Y-82451601D01* X121972516Y-82356664D01* X121935473Y-82267235D01* X121881696Y-82186751D01* X121813249Y-82118304D01* X121732765Y-82064527D01* X121643336Y-82027484D01* X121548399Y-82008600D01* X121451601Y-82008600D01* X121356664Y-82027484D01* X121267235Y-82064527D01* X121186751Y-82118304D01* X121118304Y-82186751D01* X121064527Y-82267235D01* X121027484Y-82356664D01* X121008600Y-82451601D01* X119991400Y-82451601D01* X119972516Y-82356664D01* X119935473Y-82267235D01* X119881696Y-82186751D01* X119813249Y-82118304D01* X119732765Y-82064527D01* X119643336Y-82027484D01* X119548399Y-82008600D01* X119451601Y-82008600D01* X119356664Y-82027484D01* X119267235Y-82064527D01* X119186751Y-82118304D01* X119118304Y-82186751D01* X119064527Y-82267235D01* X119027484Y-82356664D01* X119008600Y-82451601D01* X117991400Y-82451601D01* X117972516Y-82356664D01* X117935473Y-82267235D01* X117881696Y-82186751D01* X117813249Y-82118304D01* X117732765Y-82064527D01* X117643336Y-82027484D01* X117548399Y-82008600D01* X117451601Y-82008600D01* X117356664Y-82027484D01* X117267235Y-82064527D01* X117186751Y-82118304D01* X117118304Y-82186751D01* X117064527Y-82267235D01* X117027484Y-82356664D01* X117008600Y-82451601D01* X112991400Y-82451601D01* X112972516Y-82356664D01* X112935473Y-82267235D01* X112881696Y-82186751D01* X112813249Y-82118304D01* X112732765Y-82064527D01* X112643336Y-82027484D01* X112548399Y-82008600D01* X112451601Y-82008600D01* X112356664Y-82027484D01* X112267235Y-82064527D01* X112186751Y-82118304D01* X112118304Y-82186751D01* X112064527Y-82267235D01* X112027484Y-82356664D01* X112008600Y-82451601D01* X110085000Y-82451601D01* X110085000Y-81451601D01* X112008600Y-81451601D01* X112008600Y-81548399D01* X112027484Y-81643336D01* X112064527Y-81732765D01* X112118304Y-81813249D01* X112186751Y-81881696D01* X112267235Y-81935473D01* X112356664Y-81972516D01* X112451601Y-81991400D01* X112548399Y-81991400D01* X112643336Y-81972516D01* X112732765Y-81935473D01* X112813249Y-81881696D01* X112881696Y-81813249D01* X112935473Y-81732765D01* X112972516Y-81643336D01* X112991400Y-81548399D01* X112991400Y-81451601D01* X114008600Y-81451601D01* X114008600Y-81548399D01* X114027484Y-81643336D01* X114064527Y-81732765D01* X114118304Y-81813249D01* X114186751Y-81881696D01* X114267235Y-81935473D01* X114356664Y-81972516D01* X114451601Y-81991400D01* X114548399Y-81991400D01* X114643336Y-81972516D01* X114732765Y-81935473D01* X114813249Y-81881696D01* X114881696Y-81813249D01* X114935473Y-81732765D01* X114972516Y-81643336D01* X114991400Y-81548399D01* X114991400Y-81451601D01* X118008600Y-81451601D01* X118008600Y-81548399D01* X118027484Y-81643336D01* X118064527Y-81732765D01* X118118304Y-81813249D01* X118186751Y-81881696D01* X118267235Y-81935473D01* X118356664Y-81972516D01* X118451601Y-81991400D01* X118548399Y-81991400D01* X118643336Y-81972516D01* X118732765Y-81935473D01* X118813249Y-81881696D01* X118881696Y-81813249D01* X118935473Y-81732765D01* X118972516Y-81643336D01* X118991400Y-81548399D01* X118991400Y-81451601D01* X119008600Y-81451601D01* X119008600Y-81548399D01* X119027484Y-81643336D01* X119064527Y-81732765D01* X119118304Y-81813249D01* X119186751Y-81881696D01* X119267235Y-81935473D01* X119356664Y-81972516D01* X119451601Y-81991400D01* X119548399Y-81991400D01* X119643336Y-81972516D01* X119732765Y-81935473D01* X119813249Y-81881696D01* X119881696Y-81813249D01* X119935473Y-81732765D01* X119972516Y-81643336D01* X119991400Y-81548399D01* X119991400Y-81451601D01* X123008600Y-81451601D01* X123008600Y-81548399D01* X123027484Y-81643336D01* X123064527Y-81732765D01* X123118304Y-81813249D01* X123186751Y-81881696D01* X123267235Y-81935473D01* X123356664Y-81972516D01* X123451601Y-81991400D01* X123548399Y-81991400D01* X123643336Y-81972516D01* X123732765Y-81935473D01* X123813249Y-81881696D01* X123881696Y-81813249D01* X123935473Y-81732765D01* X123972516Y-81643336D01* X123991400Y-81548399D01* X123991400Y-81451601D01* X124008600Y-81451601D01* X124008600Y-81548399D01* X124027484Y-81643336D01* X124064527Y-81732765D01* X124118304Y-81813249D01* X124186751Y-81881696D01* X124267235Y-81935473D01* X124356664Y-81972516D01* X124451601Y-81991400D01* X124548399Y-81991400D01* X124643336Y-81972516D01* X124732765Y-81935473D01* X124813249Y-81881696D01* X124881696Y-81813249D01* X124935473Y-81732765D01* X124972516Y-81643336D01* X124991400Y-81548399D01* X124991400Y-81451601D01* X125008600Y-81451601D01* X125008600Y-81548399D01* X125027484Y-81643336D01* X125064527Y-81732765D01* X125118304Y-81813249D01* X125186751Y-81881696D01* X125267235Y-81935473D01* X125356664Y-81972516D01* X125451601Y-81991400D01* X125548399Y-81991400D01* X125643336Y-81972516D01* X125732765Y-81935473D01* X125813249Y-81881696D01* X125881696Y-81813249D01* X125935473Y-81732765D01* X125969092Y-81651601D01* X134208600Y-81651601D01* X134208600Y-81748399D01* X134227484Y-81843336D01* X134264527Y-81932765D01* X134318304Y-82013249D01* X134386751Y-82081696D01* X134467235Y-82135473D01* X134556664Y-82172516D01* X134651601Y-82191400D01* X134748399Y-82191400D01* X134843336Y-82172516D01* X134932765Y-82135473D01* X135013249Y-82081696D01* X135081696Y-82013249D01* X135135473Y-81932765D01* X135150000Y-81897694D01* X135164527Y-81932765D01* X135218304Y-82013249D01* X135286751Y-82081696D01* X135367235Y-82135473D01* X135456664Y-82172516D01* X135551601Y-82191400D01* X135648399Y-82191400D01* X135743336Y-82172516D01* X135832765Y-82135473D01* X135913249Y-82081696D01* X135981696Y-82013249D01* X136035473Y-81932765D01* X136072516Y-81843336D01* X136091400Y-81748399D01* X136091400Y-81651601D01* X136072516Y-81556664D01* X136035473Y-81467235D01* X135981696Y-81386751D01* X135913249Y-81318304D01* X135832765Y-81264527D01* X135743336Y-81227484D01* X135648399Y-81208600D01* X135551601Y-81208600D01* X135456664Y-81227484D01* X135367235Y-81264527D01* X135286751Y-81318304D01* X135218304Y-81386751D01* X135164527Y-81467235D01* X135150000Y-81502306D01* X135135473Y-81467235D01* X135081696Y-81386751D01* X135013249Y-81318304D01* X134932765Y-81264527D01* X134843336Y-81227484D01* X134748399Y-81208600D01* X134651601Y-81208600D01* X134556664Y-81227484D01* X134467235Y-81264527D01* X134386751Y-81318304D01* X134318304Y-81386751D01* X134264527Y-81467235D01* X134227484Y-81556664D01* X134208600Y-81651601D01* X125969092Y-81651601D01* X125972516Y-81643336D01* X125991400Y-81548399D01* X125991400Y-81451601D01* X125972516Y-81356664D01* X125935473Y-81267235D01* X125881696Y-81186751D01* X125813249Y-81118304D01* X125780617Y-81096500D01* X137906800Y-81096500D01* X137906800Y-81203500D01* X137927675Y-81308446D01* X137968623Y-81407302D01* X138028069Y-81496270D01* X138103730Y-81571931D01* X138192698Y-81631377D01* X138291554Y-81672325D01* X138396500Y-81693200D01* X138503500Y-81693200D01* X138608446Y-81672325D01* X138707302Y-81631377D01* X138796270Y-81571931D01* X138871931Y-81496270D01* X138931377Y-81407302D01* X138962478Y-81332218D01* X141311800Y-81332218D01* X141311800Y-81467782D01* X141338247Y-81600741D01* X141390125Y-81725985D01* X141465440Y-81838702D01* X141561298Y-81934560D01* X141674015Y-82009875D01* X141799259Y-82061753D01* X141932218Y-82088200D01* X142067782Y-82088200D01* X142200741Y-82061753D01* X142325985Y-82009875D01* X142438702Y-81934560D01* X142534560Y-81838702D01* X142609875Y-81725985D01* X142661753Y-81600741D01* X142688200Y-81467782D01* X142688200Y-81332218D01* X142661753Y-81199259D01* X142609875Y-81074015D01* X142534560Y-80961298D01* X142438702Y-80865440D01* X142325985Y-80790125D01* X142200741Y-80738247D01* X142067782Y-80711800D01* X141932218Y-80711800D01* X141799259Y-80738247D01* X141674015Y-80790125D01* X141561298Y-80865440D01* X141465440Y-80961298D01* X141390125Y-81074015D01* X141338247Y-81199259D01* X141311800Y-81332218D01* X138962478Y-81332218D01* X138972325Y-81308446D01* X138993200Y-81203500D01* X138993200Y-81096500D01* X138972325Y-80991554D01* X138931377Y-80892698D01* X138871931Y-80803730D01* X138796270Y-80728069D01* X138707302Y-80668623D01* X138608446Y-80627675D01* X138503500Y-80606800D01* X138396500Y-80606800D01* X138291554Y-80627675D01* X138192698Y-80668623D01* X138103730Y-80728069D01* X138028069Y-80803730D01* X137968623Y-80892698D01* X137927675Y-80991554D01* X137906800Y-81096500D01* X125780617Y-81096500D01* X125732765Y-81064527D01* X125643336Y-81027484D01* X125548399Y-81008600D01* X125451601Y-81008600D01* X125356664Y-81027484D01* X125267235Y-81064527D01* X125186751Y-81118304D01* X125118304Y-81186751D01* X125064527Y-81267235D01* X125027484Y-81356664D01* X125008600Y-81451601D01* X124991400Y-81451601D01* X124972516Y-81356664D01* X124935473Y-81267235D01* X124881696Y-81186751D01* X124813249Y-81118304D01* X124732765Y-81064527D01* X124643336Y-81027484D01* X124548399Y-81008600D01* X124451601Y-81008600D01* X124356664Y-81027484D01* X124267235Y-81064527D01* X124186751Y-81118304D01* X124118304Y-81186751D01* X124064527Y-81267235D01* X124027484Y-81356664D01* X124008600Y-81451601D01* X123991400Y-81451601D01* X123972516Y-81356664D01* X123935473Y-81267235D01* X123881696Y-81186751D01* X123813249Y-81118304D01* X123732765Y-81064527D01* X123643336Y-81027484D01* X123548399Y-81008600D01* X123451601Y-81008600D01* X123356664Y-81027484D01* X123267235Y-81064527D01* X123186751Y-81118304D01* X123118304Y-81186751D01* X123064527Y-81267235D01* X123027484Y-81356664D01* X123008600Y-81451601D01* X119991400Y-81451601D01* X119972516Y-81356664D01* X119935473Y-81267235D01* X119881696Y-81186751D01* X119813249Y-81118304D01* X119732765Y-81064527D01* X119643336Y-81027484D01* X119548399Y-81008600D01* X119451601Y-81008600D01* X119356664Y-81027484D01* X119267235Y-81064527D01* X119186751Y-81118304D01* X119118304Y-81186751D01* X119064527Y-81267235D01* X119027484Y-81356664D01* X119008600Y-81451601D01* X118991400Y-81451601D01* X118972516Y-81356664D01* X118935473Y-81267235D01* X118881696Y-81186751D01* X118813249Y-81118304D01* X118732765Y-81064527D01* X118643336Y-81027484D01* X118548399Y-81008600D01* X118451601Y-81008600D01* X118356664Y-81027484D01* X118267235Y-81064527D01* X118186751Y-81118304D01* X118118304Y-81186751D01* X118064527Y-81267235D01* X118027484Y-81356664D01* X118008600Y-81451601D01* X114991400Y-81451601D01* X114972516Y-81356664D01* X114935473Y-81267235D01* X114881696Y-81186751D01* X114813249Y-81118304D01* X114732765Y-81064527D01* X114643336Y-81027484D01* X114548399Y-81008600D01* X114451601Y-81008600D01* X114356664Y-81027484D01* X114267235Y-81064527D01* X114186751Y-81118304D01* X114118304Y-81186751D01* X114064527Y-81267235D01* X114027484Y-81356664D01* X114008600Y-81451601D01* X112991400Y-81451601D01* X112972516Y-81356664D01* X112935473Y-81267235D01* X112881696Y-81186751D01* X112813249Y-81118304D01* X112732765Y-81064527D01* X112643336Y-81027484D01* X112548399Y-81008600D01* X112451601Y-81008600D01* X112356664Y-81027484D01* X112267235Y-81064527D01* X112186751Y-81118304D01* X112118304Y-81186751D01* X112064527Y-81267235D01* X112027484Y-81356664D01* X112008600Y-81451601D01* X110085000Y-81451601D01* X110085000Y-80763405D01* X110118304Y-80813249D01* X110186751Y-80881696D01* X110267235Y-80935473D01* X110356664Y-80972516D01* X110451601Y-80991400D01* X110548399Y-80991400D01* X110643336Y-80972516D01* X110732765Y-80935473D01* X110813249Y-80881696D01* X110881696Y-80813249D01* X110935473Y-80732765D01* X110972516Y-80643336D01* X110991400Y-80548399D01* X110991400Y-80451601D01* X115008600Y-80451601D01* X115008600Y-80548399D01* X115027484Y-80643336D01* X115064527Y-80732765D01* X115118304Y-80813249D01* X115186751Y-80881696D01* X115267235Y-80935473D01* X115356664Y-80972516D01* X115451601Y-80991400D01* X115548399Y-80991400D01* X115643336Y-80972516D01* X115732765Y-80935473D01* X115813249Y-80881696D01* X115881696Y-80813249D01* X115935473Y-80732765D01* X115972516Y-80643336D01* X115991400Y-80548399D01* X115991400Y-80451601D01* X117008600Y-80451601D01* X117008600Y-80548399D01* X117027484Y-80643336D01* X117064527Y-80732765D01* X117118304Y-80813249D01* X117186751Y-80881696D01* X117267235Y-80935473D01* X117356664Y-80972516D01* X117451601Y-80991400D01* X117548399Y-80991400D01* X117643336Y-80972516D01* X117732765Y-80935473D01* X117813249Y-80881696D01* X117881696Y-80813249D01* X117935473Y-80732765D01* X117972516Y-80643336D01* X117991400Y-80548399D01* X117991400Y-80451601D01* X118008600Y-80451601D01* X118008600Y-80548399D01* X118027484Y-80643336D01* X118064527Y-80732765D01* X118118304Y-80813249D01* X118186751Y-80881696D01* X118267235Y-80935473D01* X118356664Y-80972516D01* X118451601Y-80991400D01* X118548399Y-80991400D01* X118643336Y-80972516D01* X118732765Y-80935473D01* X118813249Y-80881696D01* X118881696Y-80813249D01* X118935473Y-80732765D01* X118972516Y-80643336D01* X118991400Y-80548399D01* X118991400Y-80451601D01* X119008600Y-80451601D01* X119008600Y-80548399D01* X119027484Y-80643336D01* X119064527Y-80732765D01* X119118304Y-80813249D01* X119186751Y-80881696D01* X119267235Y-80935473D01* X119356664Y-80972516D01* X119451601Y-80991400D01* X119548399Y-80991400D01* X119643336Y-80972516D01* X119732765Y-80935473D01* X119813249Y-80881696D01* X119881696Y-80813249D01* X119935473Y-80732765D01* X119972516Y-80643336D01* X119991400Y-80548399D01* X119991400Y-80451601D01* X123008600Y-80451601D01* X123008600Y-80548399D01* X123027484Y-80643336D01* X123064527Y-80732765D01* X123118304Y-80813249D01* X123186751Y-80881696D01* X123267235Y-80935473D01* X123356664Y-80972516D01* X123451601Y-80991400D01* X123548399Y-80991400D01* X123643336Y-80972516D01* X123732765Y-80935473D01* X123813249Y-80881696D01* X123881696Y-80813249D01* X123935473Y-80732765D01* X123972516Y-80643336D01* X123991400Y-80548399D01* X123991400Y-80451601D01* X124008600Y-80451601D01* X124008600Y-80548399D01* X124027484Y-80643336D01* X124064527Y-80732765D01* X124118304Y-80813249D01* X124186751Y-80881696D01* X124267235Y-80935473D01* X124356664Y-80972516D01* X124451601Y-80991400D01* X124548399Y-80991400D01* X124643336Y-80972516D01* X124732765Y-80935473D01* X124813249Y-80881696D01* X124881696Y-80813249D01* X124935473Y-80732765D01* X124972516Y-80643336D01* X124991400Y-80548399D01* X124991400Y-80451601D01* X125008600Y-80451601D01* X125008600Y-80548399D01* X125027484Y-80643336D01* X125064527Y-80732765D01* X125118304Y-80813249D01* X125186751Y-80881696D01* X125267235Y-80935473D01* X125356664Y-80972516D01* X125451601Y-80991400D01* X125548399Y-80991400D01* X125643336Y-80972516D01* X125732765Y-80935473D01* X125813249Y-80881696D01* X125881696Y-80813249D01* X125935473Y-80732765D01* X125972516Y-80643336D01* X125991400Y-80548399D01* X125991400Y-80451601D01* X125972516Y-80356664D01* X125935473Y-80267235D01* X125881696Y-80186751D01* X125846546Y-80151601D01* X134208600Y-80151601D01* X134208600Y-80248399D01* X134227484Y-80343336D01* X134264527Y-80432765D01* X134318304Y-80513249D01* X134386751Y-80581696D01* X134467235Y-80635473D01* X134556664Y-80672516D01* X134651601Y-80691400D01* X134748399Y-80691400D01* X134843336Y-80672516D01* X134932765Y-80635473D01* X135013249Y-80581696D01* X135081696Y-80513249D01* X135135473Y-80432765D01* X135150000Y-80397694D01* X135164527Y-80432765D01* X135218304Y-80513249D01* X135286751Y-80581696D01* X135367235Y-80635473D01* X135456664Y-80672516D01* X135551601Y-80691400D01* X135648399Y-80691400D01* X135743336Y-80672516D01* X135832765Y-80635473D01* X135913249Y-80581696D01* X135981696Y-80513249D01* X136035473Y-80432765D01* X136072516Y-80343336D01* X136091400Y-80248399D01* X136091400Y-80151601D01* X136072516Y-80056664D01* X136035473Y-79967235D01* X135981696Y-79886751D01* X135913249Y-79818304D01* X135832765Y-79764527D01* X135743336Y-79727484D01* X135648399Y-79708600D01* X135551601Y-79708600D01* X135456664Y-79727484D01* X135367235Y-79764527D01* X135286751Y-79818304D01* X135218304Y-79886751D01* X135164527Y-79967235D01* X135150000Y-80002306D01* X135135473Y-79967235D01* X135081696Y-79886751D01* X135013249Y-79818304D01* X134932765Y-79764527D01* X134843336Y-79727484D01* X134748399Y-79708600D01* X134651601Y-79708600D01* X134556664Y-79727484D01* X134467235Y-79764527D01* X134386751Y-79818304D01* X134318304Y-79886751D01* X134264527Y-79967235D01* X134227484Y-80056664D01* X134208600Y-80151601D01* X125846546Y-80151601D01* X125813249Y-80118304D01* X125732765Y-80064527D01* X125643336Y-80027484D01* X125548399Y-80008600D01* X125451601Y-80008600D01* X125356664Y-80027484D01* X125267235Y-80064527D01* X125186751Y-80118304D01* X125118304Y-80186751D01* X125064527Y-80267235D01* X125027484Y-80356664D01* X125008600Y-80451601D01* X124991400Y-80451601D01* X124972516Y-80356664D01* X124935473Y-80267235D01* X124881696Y-80186751D01* X124813249Y-80118304D01* X124732765Y-80064527D01* X124643336Y-80027484D01* X124548399Y-80008600D01* X124451601Y-80008600D01* X124356664Y-80027484D01* X124267235Y-80064527D01* X124186751Y-80118304D01* X124118304Y-80186751D01* X124064527Y-80267235D01* X124027484Y-80356664D01* X124008600Y-80451601D01* X123991400Y-80451601D01* X123972516Y-80356664D01* X123935473Y-80267235D01* X123881696Y-80186751D01* X123813249Y-80118304D01* X123732765Y-80064527D01* X123643336Y-80027484D01* X123548399Y-80008600D01* X123451601Y-80008600D01* X123356664Y-80027484D01* X123267235Y-80064527D01* X123186751Y-80118304D01* X123118304Y-80186751D01* X123064527Y-80267235D01* X123027484Y-80356664D01* X123008600Y-80451601D01* X119991400Y-80451601D01* X119972516Y-80356664D01* X119935473Y-80267235D01* X119881696Y-80186751D01* X119813249Y-80118304D01* X119732765Y-80064527D01* X119643336Y-80027484D01* X119548399Y-80008600D01* X119451601Y-80008600D01* X119356664Y-80027484D01* X119267235Y-80064527D01* X119186751Y-80118304D01* X119118304Y-80186751D01* X119064527Y-80267235D01* X119027484Y-80356664D01* X119008600Y-80451601D01* X118991400Y-80451601D01* X118972516Y-80356664D01* X118935473Y-80267235D01* X118881696Y-80186751D01* X118813249Y-80118304D01* X118732765Y-80064527D01* X118643336Y-80027484D01* X118548399Y-80008600D01* X118451601Y-80008600D01* X118356664Y-80027484D01* X118267235Y-80064527D01* X118186751Y-80118304D01* X118118304Y-80186751D01* X118064527Y-80267235D01* X118027484Y-80356664D01* X118008600Y-80451601D01* X117991400Y-80451601D01* X117972516Y-80356664D01* X117935473Y-80267235D01* X117881696Y-80186751D01* X117813249Y-80118304D01* X117732765Y-80064527D01* X117643336Y-80027484D01* X117548399Y-80008600D01* X117451601Y-80008600D01* X117356664Y-80027484D01* X117267235Y-80064527D01* X117186751Y-80118304D01* X117118304Y-80186751D01* X117064527Y-80267235D01* X117027484Y-80356664D01* X117008600Y-80451601D01* X115991400Y-80451601D01* X115972516Y-80356664D01* X115935473Y-80267235D01* X115881696Y-80186751D01* X115813249Y-80118304D01* X115732765Y-80064527D01* X115643336Y-80027484D01* X115548399Y-80008600D01* X115451601Y-80008600D01* X115356664Y-80027484D01* X115267235Y-80064527D01* X115186751Y-80118304D01* X115118304Y-80186751D01* X115064527Y-80267235D01* X115027484Y-80356664D01* X115008600Y-80451601D01* X110991400Y-80451601D01* X110972516Y-80356664D01* X110935473Y-80267235D01* X110881696Y-80186751D01* X110813249Y-80118304D01* X110732765Y-80064527D01* X110643336Y-80027484D01* X110548399Y-80008600D01* X110451601Y-80008600D01* X110356664Y-80027484D01* X110267235Y-80064527D01* X110186751Y-80118304D01* X110118304Y-80186751D01* X110085000Y-80236595D01* X110085000Y-79451601D01* X116008600Y-79451601D01* X116008600Y-79548399D01* X116027484Y-79643336D01* X116064527Y-79732765D01* X116118304Y-79813249D01* X116186751Y-79881696D01* X116267235Y-79935473D01* X116356664Y-79972516D01* X116451601Y-79991400D01* X116548399Y-79991400D01* X116643336Y-79972516D01* X116732765Y-79935473D01* X116813249Y-79881696D01* X116881696Y-79813249D01* X116935473Y-79732765D01* X116972516Y-79643336D01* X116991400Y-79548399D01* X116991400Y-79451601D01* X117008600Y-79451601D01* X117008600Y-79548399D01* X117027484Y-79643336D01* X117064527Y-79732765D01* X117118304Y-79813249D01* X117186751Y-79881696D01* X117267235Y-79935473D01* X117356664Y-79972516D01* X117451601Y-79991400D01* X117548399Y-79991400D01* X117643336Y-79972516D01* X117732765Y-79935473D01* X117813249Y-79881696D01* X117881696Y-79813249D01* X117935473Y-79732765D01* X117972516Y-79643336D01* X117991400Y-79548399D01* X117991400Y-79451601D01* X118008600Y-79451601D01* X118008600Y-79548399D01* X118027484Y-79643336D01* X118064527Y-79732765D01* X118118304Y-79813249D01* X118186751Y-79881696D01* X118267235Y-79935473D01* X118356664Y-79972516D01* X118451601Y-79991400D01* X118548399Y-79991400D01* X118643336Y-79972516D01* X118732765Y-79935473D01* X118813249Y-79881696D01* X118881696Y-79813249D01* X118935473Y-79732765D01* X118972516Y-79643336D01* X118991400Y-79548399D01* X118991400Y-79451601D01* X119008600Y-79451601D01* X119008600Y-79548399D01* X119027484Y-79643336D01* X119064527Y-79732765D01* X119118304Y-79813249D01* X119186751Y-79881696D01* X119267235Y-79935473D01* X119356664Y-79972516D01* X119451601Y-79991400D01* X119548399Y-79991400D01* X119643336Y-79972516D01* X119732765Y-79935473D01* X119813249Y-79881696D01* X119881696Y-79813249D01* X119935473Y-79732765D01* X119972516Y-79643336D01* X119991400Y-79548399D01* X119991400Y-79451601D01* X120008600Y-79451601D01* X120008600Y-79548399D01* X120027484Y-79643336D01* X120064527Y-79732765D01* X120118304Y-79813249D01* X120186751Y-79881696D01* X120267235Y-79935473D01* X120356664Y-79972516D01* X120451601Y-79991400D01* X120548399Y-79991400D01* X120643336Y-79972516D01* X120732765Y-79935473D01* X120813249Y-79881696D01* X120881696Y-79813249D01* X120935473Y-79732765D01* X120972516Y-79643336D01* X120991400Y-79548399D01* X120991400Y-79451601D01* X125008600Y-79451601D01* X125008600Y-79548399D01* X125027484Y-79643336D01* X125064527Y-79732765D01* X125118304Y-79813249D01* X125186751Y-79881696D01* X125267235Y-79935473D01* X125356664Y-79972516D01* X125451601Y-79991400D01* X125548399Y-79991400D01* X125643336Y-79972516D01* X125732765Y-79935473D01* X125813249Y-79881696D01* X125881696Y-79813249D01* X125935473Y-79732765D01* X125972516Y-79643336D01* X125991400Y-79548399D01* X125991400Y-79451601D01* X126008600Y-79451601D01* X126008600Y-79548399D01* X126027484Y-79643336D01* X126064527Y-79732765D01* X126118304Y-79813249D01* X126186751Y-79881696D01* X126267235Y-79935473D01* X126356664Y-79972516D01* X126451601Y-79991400D01* X126548399Y-79991400D01* X126643336Y-79972516D01* X126732765Y-79935473D01* X126813249Y-79881696D01* X126881696Y-79813249D01* X126935473Y-79732765D01* X126972516Y-79643336D01* X126991400Y-79548399D01* X126991400Y-79451601D01* X126972516Y-79356664D01* X126935473Y-79267235D01* X126881696Y-79186751D01* X126813249Y-79118304D01* X126732765Y-79064527D01* X126643336Y-79027484D01* X126548399Y-79008600D01* X126451601Y-79008600D01* X126356664Y-79027484D01* X126267235Y-79064527D01* X126186751Y-79118304D01* X126118304Y-79186751D01* X126064527Y-79267235D01* X126027484Y-79356664D01* X126008600Y-79451601D01* X125991400Y-79451601D01* X125972516Y-79356664D01* X125935473Y-79267235D01* X125881696Y-79186751D01* X125813249Y-79118304D01* X125732765Y-79064527D01* X125643336Y-79027484D01* X125548399Y-79008600D01* X125451601Y-79008600D01* X125356664Y-79027484D01* X125267235Y-79064527D01* X125186751Y-79118304D01* X125118304Y-79186751D01* X125064527Y-79267235D01* X125027484Y-79356664D01* X125008600Y-79451601D01* X120991400Y-79451601D01* X120972516Y-79356664D01* X120935473Y-79267235D01* X120881696Y-79186751D01* X120813249Y-79118304D01* X120732765Y-79064527D01* X120643336Y-79027484D01* X120548399Y-79008600D01* X120451601Y-79008600D01* X120356664Y-79027484D01* X120267235Y-79064527D01* X120186751Y-79118304D01* X120118304Y-79186751D01* X120064527Y-79267235D01* X120027484Y-79356664D01* X120008600Y-79451601D01* X119991400Y-79451601D01* X119972516Y-79356664D01* X119935473Y-79267235D01* X119881696Y-79186751D01* X119813249Y-79118304D01* X119732765Y-79064527D01* X119643336Y-79027484D01* X119548399Y-79008600D01* X119451601Y-79008600D01* X119356664Y-79027484D01* X119267235Y-79064527D01* X119186751Y-79118304D01* X119118304Y-79186751D01* X119064527Y-79267235D01* X119027484Y-79356664D01* X119008600Y-79451601D01* X118991400Y-79451601D01* X118972516Y-79356664D01* X118935473Y-79267235D01* X118881696Y-79186751D01* X118813249Y-79118304D01* X118732765Y-79064527D01* X118643336Y-79027484D01* X118548399Y-79008600D01* X118451601Y-79008600D01* X118356664Y-79027484D01* X118267235Y-79064527D01* X118186751Y-79118304D01* X118118304Y-79186751D01* X118064527Y-79267235D01* X118027484Y-79356664D01* X118008600Y-79451601D01* X117991400Y-79451601D01* X117972516Y-79356664D01* X117935473Y-79267235D01* X117881696Y-79186751D01* X117813249Y-79118304D01* X117732765Y-79064527D01* X117643336Y-79027484D01* X117548399Y-79008600D01* X117451601Y-79008600D01* X117356664Y-79027484D01* X117267235Y-79064527D01* X117186751Y-79118304D01* X117118304Y-79186751D01* X117064527Y-79267235D01* X117027484Y-79356664D01* X117008600Y-79451601D01* X116991400Y-79451601D01* X116972516Y-79356664D01* X116935473Y-79267235D01* X116881696Y-79186751D01* X116813249Y-79118304D01* X116732765Y-79064527D01* X116643336Y-79027484D01* X116548399Y-79008600D01* X116451601Y-79008600D01* X116356664Y-79027484D01* X116267235Y-79064527D01* X116186751Y-79118304D01* X116118304Y-79186751D01* X116064527Y-79267235D01* X116027484Y-79356664D01* X116008600Y-79451601D01* X110085000Y-79451601D01* X110085000Y-78451601D01* X112008600Y-78451601D01* X112008600Y-78548399D01* X112027484Y-78643336D01* X112064527Y-78732765D01* X112118304Y-78813249D01* X112186751Y-78881696D01* X112267235Y-78935473D01* X112356664Y-78972516D01* X112451601Y-78991400D01* X112548399Y-78991400D01* X112643336Y-78972516D01* X112732765Y-78935473D01* X112813249Y-78881696D01* X112881696Y-78813249D01* X112935473Y-78732765D01* X112972516Y-78643336D01* X112991400Y-78548399D01* X112991400Y-78451601D01* X113008600Y-78451601D01* X113008600Y-78548399D01* X113027484Y-78643336D01* X113064527Y-78732765D01* X113118304Y-78813249D01* X113186751Y-78881696D01* X113267235Y-78935473D01* X113356664Y-78972516D01* X113451601Y-78991400D01* X113548399Y-78991400D01* X113643336Y-78972516D01* X113732765Y-78935473D01* X113813249Y-78881696D01* X113881696Y-78813249D01* X113935473Y-78732765D01* X113972516Y-78643336D01* X113991400Y-78548399D01* X113991400Y-78451601D01* X114008600Y-78451601D01* X114008600Y-78548399D01* X114027484Y-78643336D01* X114064527Y-78732765D01* X114118304Y-78813249D01* X114186751Y-78881696D01* X114267235Y-78935473D01* X114356664Y-78972516D01* X114451601Y-78991400D01* X114548399Y-78991400D01* X114643336Y-78972516D01* X114732765Y-78935473D01* X114813249Y-78881696D01* X114881696Y-78813249D01* X114935473Y-78732765D01* X114972516Y-78643336D01* X114991400Y-78548399D01* X114991400Y-78451601D01* X116008600Y-78451601D01* X116008600Y-78548399D01* X116027484Y-78643336D01* X116064527Y-78732765D01* X116118304Y-78813249D01* X116186751Y-78881696D01* X116267235Y-78935473D01* X116356664Y-78972516D01* X116451601Y-78991400D01* X116548399Y-78991400D01* X116643336Y-78972516D01* X116732765Y-78935473D01* X116813249Y-78881696D01* X116881696Y-78813249D01* X116935473Y-78732765D01* X116972516Y-78643336D01* X116991400Y-78548399D01* X116991400Y-78451601D01* X117008600Y-78451601D01* X117008600Y-78548399D01* X117027484Y-78643336D01* X117064527Y-78732765D01* X117118304Y-78813249D01* X117186751Y-78881696D01* X117267235Y-78935473D01* X117356664Y-78972516D01* X117451601Y-78991400D01* X117548399Y-78991400D01* X117643336Y-78972516D01* X117732765Y-78935473D01* X117813249Y-78881696D01* X117881696Y-78813249D01* X117935473Y-78732765D01* X117972516Y-78643336D01* X117991400Y-78548399D01* X117991400Y-78451601D01* X122008600Y-78451601D01* X122008600Y-78548399D01* X122027484Y-78643336D01* X122064527Y-78732765D01* X122118304Y-78813249D01* X122186751Y-78881696D01* X122267235Y-78935473D01* X122356664Y-78972516D01* X122451601Y-78991400D01* X122548399Y-78991400D01* X122643336Y-78972516D01* X122732765Y-78935473D01* X122813249Y-78881696D01* X122881696Y-78813249D01* X122935473Y-78732765D01* X122972516Y-78643336D01* X122991400Y-78548399D01* X122991400Y-78451601D01* X123008600Y-78451601D01* X123008600Y-78548399D01* X123027484Y-78643336D01* X123064527Y-78732765D01* X123118304Y-78813249D01* X123186751Y-78881696D01* X123267235Y-78935473D01* X123356664Y-78972516D01* X123451601Y-78991400D01* X123548399Y-78991400D01* X123643336Y-78972516D01* X123732765Y-78935473D01* X123813249Y-78881696D01* X123881696Y-78813249D01* X123935473Y-78732765D01* X123972516Y-78643336D01* X123991400Y-78548399D01* X123991400Y-78451601D01* X124008600Y-78451601D01* X124008600Y-78548399D01* X124027484Y-78643336D01* X124064527Y-78732765D01* X124118304Y-78813249D01* X124186751Y-78881696D01* X124267235Y-78935473D01* X124356664Y-78972516D01* X124451601Y-78991400D01* X124548399Y-78991400D01* X124643336Y-78972516D01* X124732765Y-78935473D01* X124813249Y-78881696D01* X124881696Y-78813249D01* X124935473Y-78732765D01* X124972516Y-78643336D01* X124991400Y-78548399D01* X124991400Y-78451601D01* X125008600Y-78451601D01* X125008600Y-78548399D01* X125027484Y-78643336D01* X125064527Y-78732765D01* X125118304Y-78813249D01* X125186751Y-78881696D01* X125267235Y-78935473D01* X125356664Y-78972516D01* X125451601Y-78991400D01* X125548399Y-78991400D01* X125643336Y-78972516D01* X125732765Y-78935473D01* X125813249Y-78881696D01* X125881696Y-78813249D01* X125935473Y-78732765D01* X125972516Y-78643336D01* X125991400Y-78548399D01* X125991400Y-78451601D01* X132908600Y-78451601D01* X132908600Y-78548399D01* X132927484Y-78643336D01* X132964527Y-78732765D01* X133018304Y-78813249D01* X133086751Y-78881696D01* X133167235Y-78935473D01* X133256664Y-78972516D01* X133351601Y-78991400D01* X133448399Y-78991400D01* X133543336Y-78972516D01* X133632765Y-78935473D01* X133713249Y-78881696D01* X133781696Y-78813249D01* X133835473Y-78732765D01* X133872516Y-78643336D01* X133891400Y-78548399D01* X133891400Y-78451601D01* X134208600Y-78451601D01* X134208600Y-78548399D01* X134227484Y-78643336D01* X134264527Y-78732765D01* X134318304Y-78813249D01* X134386751Y-78881696D01* X134467235Y-78935473D01* X134556664Y-78972516D01* X134651601Y-78991400D01* X134748399Y-78991400D01* X134843336Y-78972516D01* X134932765Y-78935473D01* X135013249Y-78881696D01* X135081696Y-78813249D01* X135135473Y-78732765D01* X135150000Y-78697694D01* X135164527Y-78732765D01* X135218304Y-78813249D01* X135286751Y-78881696D01* X135367235Y-78935473D01* X135456664Y-78972516D01* X135551601Y-78991400D01* X135648399Y-78991400D01* X135743336Y-78972516D01* X135832765Y-78935473D01* X135913249Y-78881696D01* X135981696Y-78813249D01* X136035473Y-78732765D01* X136072516Y-78643336D01* X136091400Y-78548399D01* X136091400Y-78451601D01* X136072516Y-78356664D01* X136035473Y-78267235D01* X135981696Y-78186751D01* X135946546Y-78151601D01* X137458610Y-78151601D01* X137458610Y-78248399D01* X137477494Y-78343336D01* X137514537Y-78432765D01* X137568314Y-78513249D01* X137636761Y-78581696D01* X137717245Y-78635473D01* X137806674Y-78672516D01* X137901611Y-78691400D01* X137956800Y-78691400D01* X137956800Y-78703492D01* X137977675Y-78808438D01* X138018623Y-78907294D01* X138078069Y-78996262D01* X138153730Y-79071923D01* X138242698Y-79131369D01* X138341554Y-79172317D01* X138446500Y-79193192D01* X138553500Y-79193192D01* X138658446Y-79172317D01* X138757302Y-79131369D01* X138846270Y-79071923D01* X138921931Y-78996262D01* X138981377Y-78907294D01* X139022325Y-78808438D01* X139043200Y-78703492D01* X139043200Y-78596492D01* X139022325Y-78491546D01* X138981377Y-78392690D01* X138921931Y-78303722D01* X138846270Y-78228061D01* X138757302Y-78168615D01* X138658446Y-78127667D01* X138553500Y-78106792D01* X138446500Y-78106792D01* X138433030Y-78109471D01* X138422526Y-78056664D01* X138390455Y-77979237D01* X138451601Y-77991400D01* X138548399Y-77991400D01* X138643336Y-77972516D01* X138732765Y-77935473D01* X138813249Y-77881696D01* X138881696Y-77813249D01* X138935473Y-77732765D01* X138972516Y-77643336D01* X138991400Y-77548399D01* X138991400Y-77451601D01* X138972516Y-77356664D01* X138935473Y-77267235D01* X138881696Y-77186751D01* X138813249Y-77118304D01* X138732765Y-77064527D01* X138643336Y-77027484D01* X138548399Y-77008600D01* X138491400Y-77008600D01* X138491400Y-76951601D01* X138472516Y-76856664D01* X138435473Y-76767235D01* X138381696Y-76686751D01* X138313249Y-76618304D01* X138232765Y-76564527D01* X138143336Y-76527484D01* X138048399Y-76508600D01* X137951601Y-76508600D01* X137856664Y-76527484D01* X137767235Y-76564527D01* X137686751Y-76618304D01* X137618304Y-76686751D01* X137564527Y-76767235D01* X137527484Y-76856664D01* X137508600Y-76951601D01* X137508600Y-77048399D01* X137527484Y-77143336D01* X137564527Y-77232765D01* X137618304Y-77313249D01* X137686751Y-77381696D01* X137767235Y-77435473D01* X137856664Y-77472516D01* X137951601Y-77491400D01* X138008600Y-77491400D01* X138008600Y-77548399D01* X138027484Y-77643336D01* X138059555Y-77720763D01* X137998409Y-77708600D01* X137901611Y-77708600D01* X137806674Y-77727484D01* X137717245Y-77764527D01* X137636761Y-77818304D01* X137568314Y-77886751D01* X137514537Y-77967235D01* X137477494Y-78056664D01* X137458610Y-78151601D01* X135946546Y-78151601D01* X135913249Y-78118304D01* X135832765Y-78064527D01* X135743336Y-78027484D01* X135648399Y-78008600D01* X135551601Y-78008600D01* X135456664Y-78027484D01* X135367235Y-78064527D01* X135286751Y-78118304D01* X135218304Y-78186751D01* X135164527Y-78267235D01* X135150000Y-78302306D01* X135135473Y-78267235D01* X135081696Y-78186751D01* X135013249Y-78118304D01* X134932765Y-78064527D01* X134843336Y-78027484D01* X134748399Y-78008600D01* X134651601Y-78008600D01* X134556664Y-78027484D01* X134467235Y-78064527D01* X134386751Y-78118304D01* X134318304Y-78186751D01* X134264527Y-78267235D01* X134227484Y-78356664D01* X134208600Y-78451601D01* X133891400Y-78451601D01* X133872516Y-78356664D01* X133835473Y-78267235D01* X133781696Y-78186751D01* X133713249Y-78118304D01* X133632765Y-78064527D01* X133543336Y-78027484D01* X133448399Y-78008600D01* X133351601Y-78008600D01* X133256664Y-78027484D01* X133167235Y-78064527D01* X133086751Y-78118304D01* X133018304Y-78186751D01* X132964527Y-78267235D01* X132927484Y-78356664D01* X132908600Y-78451601D01* X125991400Y-78451601D01* X125972516Y-78356664D01* X125935473Y-78267235D01* X125881696Y-78186751D01* X125813249Y-78118304D01* X125732765Y-78064527D01* X125643336Y-78027484D01* X125548399Y-78008600D01* X125451601Y-78008600D01* X125356664Y-78027484D01* X125267235Y-78064527D01* X125186751Y-78118304D01* X125118304Y-78186751D01* X125064527Y-78267235D01* X125027484Y-78356664D01* X125008600Y-78451601D01* X124991400Y-78451601D01* X124972516Y-78356664D01* X124935473Y-78267235D01* X124881696Y-78186751D01* X124813249Y-78118304D01* X124732765Y-78064527D01* X124643336Y-78027484D01* X124548399Y-78008600D01* X124451601Y-78008600D01* X124356664Y-78027484D01* X124267235Y-78064527D01* X124186751Y-78118304D01* X124118304Y-78186751D01* X124064527Y-78267235D01* X124027484Y-78356664D01* X124008600Y-78451601D01* X123991400Y-78451601D01* X123972516Y-78356664D01* X123935473Y-78267235D01* X123881696Y-78186751D01* X123813249Y-78118304D01* X123732765Y-78064527D01* X123643336Y-78027484D01* X123548399Y-78008600D01* X123451601Y-78008600D01* X123356664Y-78027484D01* X123267235Y-78064527D01* X123186751Y-78118304D01* X123118304Y-78186751D01* X123064527Y-78267235D01* X123027484Y-78356664D01* X123008600Y-78451601D01* X122991400Y-78451601D01* X122972516Y-78356664D01* X122935473Y-78267235D01* X122881696Y-78186751D01* X122813249Y-78118304D01* X122732765Y-78064527D01* X122643336Y-78027484D01* X122548399Y-78008600D01* X122451601Y-78008600D01* X122356664Y-78027484D01* X122267235Y-78064527D01* X122186751Y-78118304D01* X122118304Y-78186751D01* X122064527Y-78267235D01* X122027484Y-78356664D01* X122008600Y-78451601D01* X117991400Y-78451601D01* X117972516Y-78356664D01* X117935473Y-78267235D01* X117881696Y-78186751D01* X117813249Y-78118304D01* X117732765Y-78064527D01* X117643336Y-78027484D01* X117548399Y-78008600D01* X117451601Y-78008600D01* X117356664Y-78027484D01* X117267235Y-78064527D01* X117186751Y-78118304D01* X117118304Y-78186751D01* X117064527Y-78267235D01* X117027484Y-78356664D01* X117008600Y-78451601D01* X116991400Y-78451601D01* X116972516Y-78356664D01* X116935473Y-78267235D01* X116881696Y-78186751D01* X116813249Y-78118304D01* X116732765Y-78064527D01* X116643336Y-78027484D01* X116548399Y-78008600D01* X116451601Y-78008600D01* X116356664Y-78027484D01* X116267235Y-78064527D01* X116186751Y-78118304D01* X116118304Y-78186751D01* X116064527Y-78267235D01* X116027484Y-78356664D01* X116008600Y-78451601D01* X114991400Y-78451601D01* X114972516Y-78356664D01* X114935473Y-78267235D01* X114881696Y-78186751D01* X114813249Y-78118304D01* X114732765Y-78064527D01* X114643336Y-78027484D01* X114548399Y-78008600D01* X114451601Y-78008600D01* X114356664Y-78027484D01* X114267235Y-78064527D01* X114186751Y-78118304D01* X114118304Y-78186751D01* X114064527Y-78267235D01* X114027484Y-78356664D01* X114008600Y-78451601D01* X113991400Y-78451601D01* X113972516Y-78356664D01* X113935473Y-78267235D01* X113881696Y-78186751D01* X113813249Y-78118304D01* X113732765Y-78064527D01* X113643336Y-78027484D01* X113548399Y-78008600D01* X113451601Y-78008600D01* X113356664Y-78027484D01* X113267235Y-78064527D01* X113186751Y-78118304D01* X113118304Y-78186751D01* X113064527Y-78267235D01* X113027484Y-78356664D01* X113008600Y-78451601D01* X112991400Y-78451601D01* X112972516Y-78356664D01* X112935473Y-78267235D01* X112881696Y-78186751D01* X112813249Y-78118304D01* X112732765Y-78064527D01* X112643336Y-78027484D01* X112548399Y-78008600D01* X112451601Y-78008600D01* X112356664Y-78027484D01* X112267235Y-78064527D01* X112186751Y-78118304D01* X112118304Y-78186751D01* X112064527Y-78267235D01* X112027484Y-78356664D01* X112008600Y-78451601D01* X110085000Y-78451601D01* X110085000Y-77451601D01* X112008600Y-77451601D01* X112008600Y-77548399D01* X112027484Y-77643336D01* X112064527Y-77732765D01* X112118304Y-77813249D01* X112186751Y-77881696D01* X112267235Y-77935473D01* X112356664Y-77972516D01* X112451601Y-77991400D01* X112548399Y-77991400D01* X112643336Y-77972516D01* X112732765Y-77935473D01* X112813249Y-77881696D01* X112881696Y-77813249D01* X112935473Y-77732765D01* X112972516Y-77643336D01* X112991400Y-77548399D01* X112991400Y-77451601D01* X119008600Y-77451601D01* X119008600Y-77548399D01* X119027484Y-77643336D01* X119064527Y-77732765D01* X119118304Y-77813249D01* X119186751Y-77881696D01* X119267235Y-77935473D01* X119356664Y-77972516D01* X119451601Y-77991400D01* X119548399Y-77991400D01* X119643336Y-77972516D01* X119732765Y-77935473D01* X119813249Y-77881696D01* X119881696Y-77813249D01* X119935473Y-77732765D01* X119972516Y-77643336D01* X119991400Y-77548399D01* X119991400Y-77451601D01* X120008600Y-77451601D01* X120008600Y-77548399D01* X120027484Y-77643336D01* X120064527Y-77732765D01* X120118304Y-77813249D01* X120186751Y-77881696D01* X120267235Y-77935473D01* X120356664Y-77972516D01* X120451601Y-77991400D01* X120548399Y-77991400D01* X120643336Y-77972516D01* X120732765Y-77935473D01* X120813249Y-77881696D01* X120881696Y-77813249D01* X120935473Y-77732765D01* X120972516Y-77643336D01* X120991400Y-77548399D01* X120991400Y-77451601D01* X121008600Y-77451601D01* X121008600Y-77548399D01* X121027484Y-77643336D01* X121064527Y-77732765D01* X121118304Y-77813249D01* X121186751Y-77881696D01* X121267235Y-77935473D01* X121356664Y-77972516D01* X121451601Y-77991400D01* X121548399Y-77991400D01* X121643336Y-77972516D01* X121732765Y-77935473D01* X121813249Y-77881696D01* X121881696Y-77813249D01* X121935473Y-77732765D01* X121972516Y-77643336D01* X121991400Y-77548399D01* X121991400Y-77451601D01* X121972516Y-77356664D01* X121935473Y-77267235D01* X121881696Y-77186751D01* X121813249Y-77118304D01* X121732765Y-77064527D01* X121643336Y-77027484D01* X121548399Y-77008600D01* X121451601Y-77008600D01* X121356664Y-77027484D01* X121267235Y-77064527D01* X121186751Y-77118304D01* X121118304Y-77186751D01* X121064527Y-77267235D01* X121027484Y-77356664D01* X121008600Y-77451601D01* X120991400Y-77451601D01* X120972516Y-77356664D01* X120935473Y-77267235D01* X120881696Y-77186751D01* X120813249Y-77118304D01* X120732765Y-77064527D01* X120643336Y-77027484D01* X120548399Y-77008600D01* X120451601Y-77008600D01* X120356664Y-77027484D01* X120267235Y-77064527D01* X120186751Y-77118304D01* X120118304Y-77186751D01* X120064527Y-77267235D01* X120027484Y-77356664D01* X120008600Y-77451601D01* X119991400Y-77451601D01* X119972516Y-77356664D01* X119935473Y-77267235D01* X119881696Y-77186751D01* X119813249Y-77118304D01* X119732765Y-77064527D01* X119643336Y-77027484D01* X119548399Y-77008600D01* X119451601Y-77008600D01* X119356664Y-77027484D01* X119267235Y-77064527D01* X119186751Y-77118304D01* X119118304Y-77186751D01* X119064527Y-77267235D01* X119027484Y-77356664D01* X119008600Y-77451601D01* X112991400Y-77451601D01* X112972516Y-77356664D01* X112935473Y-77267235D01* X112881696Y-77186751D01* X112813249Y-77118304D01* X112732765Y-77064527D01* X112643336Y-77027484D01* X112548399Y-77008600D01* X112451601Y-77008600D01* X112356664Y-77027484D01* X112267235Y-77064527D01* X112186751Y-77118304D01* X112118304Y-77186751D01* X112064527Y-77267235D01* X112027484Y-77356664D01* X112008600Y-77451601D01* X110085000Y-77451601D01* X110085000Y-76451601D01* X115008600Y-76451601D01* X115008600Y-76548399D01* X115027484Y-76643336D01* X115064527Y-76732765D01* X115118304Y-76813249D01* X115186751Y-76881696D01* X115267235Y-76935473D01* X115356664Y-76972516D01* X115451601Y-76991400D01* X115548399Y-76991400D01* X115643336Y-76972516D01* X115732765Y-76935473D01* X115813249Y-76881696D01* X115881696Y-76813249D01* X115935473Y-76732765D01* X115972516Y-76643336D01* X115991400Y-76548399D01* X115991400Y-76451601D01* X118008600Y-76451601D01* X118008600Y-76548399D01* X118027484Y-76643336D01* X118064527Y-76732765D01* X118118304Y-76813249D01* X118186751Y-76881696D01* X118267235Y-76935473D01* X118356664Y-76972516D01* X118451601Y-76991400D01* X118548399Y-76991400D01* X118643336Y-76972516D01* X118732765Y-76935473D01* X118813249Y-76881696D01* X118881696Y-76813249D01* X118935473Y-76732765D01* X118972516Y-76643336D01* X118991400Y-76548399D01* X118991400Y-76451601D01* X119008600Y-76451601D01* X119008600Y-76548399D01* X119027484Y-76643336D01* X119064527Y-76732765D01* X119118304Y-76813249D01* X119186751Y-76881696D01* X119267235Y-76935473D01* X119356664Y-76972516D01* X119451601Y-76991400D01* X119548399Y-76991400D01* X119643336Y-76972516D01* X119732765Y-76935473D01* X119813249Y-76881696D01* X119881696Y-76813249D01* X119935473Y-76732765D01* X119972516Y-76643336D01* X119991400Y-76548399D01* X119991400Y-76451601D01* X120008600Y-76451601D01* X120008600Y-76548399D01* X120027484Y-76643336D01* X120064527Y-76732765D01* X120118304Y-76813249D01* X120186751Y-76881696D01* X120267235Y-76935473D01* X120356664Y-76972516D01* X120451601Y-76991400D01* X120548399Y-76991400D01* X120643336Y-76972516D01* X120732765Y-76935473D01* X120813249Y-76881696D01* X120881696Y-76813249D01* X120935473Y-76732765D01* X120972516Y-76643336D01* X120991400Y-76548399D01* X120991400Y-76451601D01* X121008600Y-76451601D01* X121008600Y-76548399D01* X121027484Y-76643336D01* X121064527Y-76732765D01* X121118304Y-76813249D01* X121186751Y-76881696D01* X121267235Y-76935473D01* X121356664Y-76972516D01* X121451601Y-76991400D01* X121548399Y-76991400D01* X121643336Y-76972516D01* X121732765Y-76935473D01* X121813249Y-76881696D01* X121881696Y-76813249D01* X121935473Y-76732765D01* X121972516Y-76643336D01* X121991400Y-76548399D01* X121991400Y-76451601D01* X124008600Y-76451601D01* X124008600Y-76548399D01* X124027484Y-76643336D01* X124064527Y-76732765D01* X124118304Y-76813249D01* X124186751Y-76881696D01* X124267235Y-76935473D01* X124356664Y-76972516D01* X124451601Y-76991400D01* X124548399Y-76991400D01* X124643336Y-76972516D01* X124732765Y-76935473D01* X124813249Y-76881696D01* X124881696Y-76813249D01* X124935473Y-76732765D01* X124972516Y-76643336D01* X124991400Y-76548399D01* X124991400Y-76451601D01* X125008600Y-76451601D01* X125008600Y-76548399D01* X125027484Y-76643336D01* X125064527Y-76732765D01* X125118304Y-76813249D01* X125186751Y-76881696D01* X125267235Y-76935473D01* X125356664Y-76972516D01* X125451601Y-76991400D01* X125548399Y-76991400D01* X125643336Y-76972516D01* X125732765Y-76935473D01* X125813249Y-76881696D01* X125881696Y-76813249D01* X125935473Y-76732765D01* X125972516Y-76643336D01* X125991400Y-76548399D01* X125991400Y-76451601D01* X126008600Y-76451601D01* X126008600Y-76548399D01* X126027484Y-76643336D01* X126064527Y-76732765D01* X126118304Y-76813249D01* X126186751Y-76881696D01* X126267235Y-76935473D01* X126356664Y-76972516D01* X126451601Y-76991400D01* X126548399Y-76991400D01* X126643336Y-76972516D01* X126732765Y-76935473D01* X126813249Y-76881696D01* X126881696Y-76813249D01* X126935473Y-76732765D01* X126972516Y-76643336D01* X126991400Y-76548399D01* X126991400Y-76451601D01* X126972516Y-76356664D01* X126935473Y-76267235D01* X126881696Y-76186751D01* X126813249Y-76118304D01* X126732765Y-76064527D01* X126701560Y-76051601D01* X132908600Y-76051601D01* X132908600Y-76148399D01* X132927484Y-76243336D01* X132964527Y-76332765D01* X133018304Y-76413249D01* X133086751Y-76481696D01* X133167235Y-76535473D01* X133256664Y-76572516D01* X133351601Y-76591400D01* X133448399Y-76591400D01* X133543336Y-76572516D01* X133632765Y-76535473D01* X133713249Y-76481696D01* X133781696Y-76413249D01* X133835473Y-76332765D01* X133872516Y-76243336D01* X133891400Y-76148399D01* X133891400Y-76051601D01* X134908594Y-76051601D01* X134908594Y-76148399D01* X134927478Y-76243336D01* X134964521Y-76332765D01* X135018298Y-76413249D01* X135086745Y-76481696D01* X135167229Y-76535473D01* X135256658Y-76572516D01* X135351595Y-76591400D01* X135448393Y-76591400D01* X135543330Y-76572516D01* X135632759Y-76535473D01* X135713243Y-76481696D01* X135781690Y-76413249D01* X135835467Y-76332765D01* X135872510Y-76243336D01* X135891394Y-76148399D01* X135891394Y-76051601D01* X135872510Y-75956664D01* X135835467Y-75867235D01* X135781690Y-75786751D01* X135713243Y-75718304D01* X135632759Y-75664527D01* X135543330Y-75627484D01* X135448393Y-75608600D01* X135351595Y-75608600D01* X135256658Y-75627484D01* X135167229Y-75664527D01* X135086745Y-75718304D01* X135018298Y-75786751D01* X134964521Y-75867235D01* X134927478Y-75956664D01* X134908594Y-76051601D01* X133891400Y-76051601D01* X133872516Y-75956664D01* X133835473Y-75867235D01* X133781696Y-75786751D01* X133713249Y-75718304D01* X133632765Y-75664527D01* X133543336Y-75627484D01* X133448399Y-75608600D01* X133351601Y-75608600D01* X133256664Y-75627484D01* X133167235Y-75664527D01* X133086751Y-75718304D01* X133018304Y-75786751D01* X132964527Y-75867235D01* X132927484Y-75956664D01* X132908600Y-76051601D01* X126701560Y-76051601D01* X126643336Y-76027484D01* X126548399Y-76008600D01* X126451601Y-76008600D01* X126356664Y-76027484D01* X126267235Y-76064527D01* X126186751Y-76118304D01* X126118304Y-76186751D01* X126064527Y-76267235D01* X126027484Y-76356664D01* X126008600Y-76451601D01* X125991400Y-76451601D01* X125972516Y-76356664D01* X125935473Y-76267235D01* X125881696Y-76186751D01* X125813249Y-76118304D01* X125732765Y-76064527D01* X125643336Y-76027484D01* X125548399Y-76008600D01* X125451601Y-76008600D01* X125356664Y-76027484D01* X125267235Y-76064527D01* X125186751Y-76118304D01* X125118304Y-76186751D01* X125064527Y-76267235D01* X125027484Y-76356664D01* X125008600Y-76451601D01* X124991400Y-76451601D01* X124972516Y-76356664D01* X124935473Y-76267235D01* X124881696Y-76186751D01* X124813249Y-76118304D01* X124732765Y-76064527D01* X124643336Y-76027484D01* X124548399Y-76008600D01* X124451601Y-76008600D01* X124356664Y-76027484D01* X124267235Y-76064527D01* X124186751Y-76118304D01* X124118304Y-76186751D01* X124064527Y-76267235D01* X124027484Y-76356664D01* X124008600Y-76451601D01* X121991400Y-76451601D01* X121972516Y-76356664D01* X121935473Y-76267235D01* X121881696Y-76186751D01* X121813249Y-76118304D01* X121732765Y-76064527D01* X121643336Y-76027484D01* X121548399Y-76008600D01* X121451601Y-76008600D01* X121356664Y-76027484D01* X121267235Y-76064527D01* X121186751Y-76118304D01* X121118304Y-76186751D01* X121064527Y-76267235D01* X121027484Y-76356664D01* X121008600Y-76451601D01* X120991400Y-76451601D01* X120972516Y-76356664D01* X120935473Y-76267235D01* X120881696Y-76186751D01* X120813249Y-76118304D01* X120732765Y-76064527D01* X120643336Y-76027484D01* X120548399Y-76008600D01* X120451601Y-76008600D01* X120356664Y-76027484D01* X120267235Y-76064527D01* X120186751Y-76118304D01* X120118304Y-76186751D01* X120064527Y-76267235D01* X120027484Y-76356664D01* X120008600Y-76451601D01* X119991400Y-76451601D01* X119972516Y-76356664D01* X119935473Y-76267235D01* X119881696Y-76186751D01* X119813249Y-76118304D01* X119732765Y-76064527D01* X119643336Y-76027484D01* X119548399Y-76008600D01* X119451601Y-76008600D01* X119356664Y-76027484D01* X119267235Y-76064527D01* X119186751Y-76118304D01* X119118304Y-76186751D01* X119064527Y-76267235D01* X119027484Y-76356664D01* X119008600Y-76451601D01* X118991400Y-76451601D01* X118972516Y-76356664D01* X118935473Y-76267235D01* X118881696Y-76186751D01* X118813249Y-76118304D01* X118732765Y-76064527D01* X118643336Y-76027484D01* X118548399Y-76008600D01* X118451601Y-76008600D01* X118356664Y-76027484D01* X118267235Y-76064527D01* X118186751Y-76118304D01* X118118304Y-76186751D01* X118064527Y-76267235D01* X118027484Y-76356664D01* X118008600Y-76451601D01* X115991400Y-76451601D01* X115972516Y-76356664D01* X115935473Y-76267235D01* X115881696Y-76186751D01* X115813249Y-76118304D01* X115732765Y-76064527D01* X115643336Y-76027484D01* X115548399Y-76008600D01* X115451601Y-76008600D01* X115356664Y-76027484D01* X115267235Y-76064527D01* X115186751Y-76118304D01* X115118304Y-76186751D01* X115064527Y-76267235D01* X115027484Y-76356664D01* X115008600Y-76451601D01* X110085000Y-76451601D01* X110085000Y-75085000D01* X112236595Y-75085000D01* X112186751Y-75118304D01* X112186751Y-75118304D01* G37* X112186751Y-75118304D02* X112118304Y-75186751D01* X112064527Y-75267235D01* X112027484Y-75356664D01* X112008600Y-75451601D01* X112008600Y-75548399D01* X112027484Y-75643336D01* X112064527Y-75732765D01* X112118304Y-75813249D01* X112186751Y-75881696D01* X112267235Y-75935473D01* X112356664Y-75972516D01* X112451601Y-75991400D01* X112548399Y-75991400D01* X112643336Y-75972516D01* X112732765Y-75935473D01* X112813249Y-75881696D01* X112881696Y-75813249D01* X112935473Y-75732765D01* X112972516Y-75643336D01* X112991400Y-75548399D01* X112991400Y-75451601D01* X112972516Y-75356664D01* X112935473Y-75267235D01* X112881696Y-75186751D01* X112813249Y-75118304D01* X112763405Y-75085000D01* X118236595Y-75085000D01* X118186751Y-75118304D01* X118118304Y-75186751D01* X118064527Y-75267235D01* X118027484Y-75356664D01* X118008600Y-75451601D01* X118008600Y-75548399D01* X118027484Y-75643336D01* X118064527Y-75732765D01* X118118304Y-75813249D01* X118186751Y-75881696D01* X118267235Y-75935473D01* X118356664Y-75972516D01* X118451601Y-75991400D01* X118548399Y-75991400D01* X118643336Y-75972516D01* X118732765Y-75935473D01* X118813249Y-75881696D01* X118881696Y-75813249D01* X118935473Y-75732765D01* X118972516Y-75643336D01* X118991400Y-75548399D01* X118991400Y-75451601D01* X118972516Y-75356664D01* X118935473Y-75267235D01* X118881696Y-75186751D01* X118813249Y-75118304D01* X118763405Y-75085000D01* X120236595Y-75085000D01* X120186751Y-75118304D01* X120118304Y-75186751D01* X120064527Y-75267235D01* X120027484Y-75356664D01* X120008600Y-75451601D01* X120008600Y-75548399D01* X120027484Y-75643336D01* X120064527Y-75732765D01* X120118304Y-75813249D01* X120186751Y-75881696D01* X120267235Y-75935473D01* X120356664Y-75972516D01* X120451601Y-75991400D01* X120548399Y-75991400D01* X120643336Y-75972516D01* X120732765Y-75935473D01* X120813249Y-75881696D01* X120881696Y-75813249D01* X120935473Y-75732765D01* X120972516Y-75643336D01* X120991400Y-75548399D01* X120991400Y-75451601D01* X120972516Y-75356664D01* X120935473Y-75267235D01* X120881696Y-75186751D01* X120813249Y-75118304D01* X120763405Y-75085000D01* X123236595Y-75085000D01* X123186751Y-75118304D01* X123118304Y-75186751D01* X123064527Y-75267235D01* X123027484Y-75356664D01* X123008600Y-75451601D01* X123008600Y-75548399D01* X123027484Y-75643336D01* X123064527Y-75732765D01* X123118304Y-75813249D01* X123186751Y-75881696D01* X123267235Y-75935473D01* X123356664Y-75972516D01* X123451601Y-75991400D01* X123548399Y-75991400D01* X123643336Y-75972516D01* X123732765Y-75935473D01* X123813249Y-75881696D01* X123881696Y-75813249D01* X123935473Y-75732765D01* X123972516Y-75643336D01* X123991400Y-75548399D01* X123991400Y-75451601D01* X123972516Y-75356664D01* X123935473Y-75267235D01* X123881696Y-75186751D01* X123813249Y-75118304D01* X123763405Y-75085000D01* X125236595Y-75085000D01* X125186751Y-75118304D01* X125118304Y-75186751D01* X125064527Y-75267235D01* X125027484Y-75356664D01* X125008600Y-75451601D01* X125008600Y-75548399D01* X125027484Y-75643336D01* X125064527Y-75732765D01* X125118304Y-75813249D01* X125186751Y-75881696D01* X125267235Y-75935473D01* X125356664Y-75972516D01* X125451601Y-75991400D01* X125548399Y-75991400D01* X125643336Y-75972516D01* X125732765Y-75935473D01* X125813249Y-75881696D01* X125881696Y-75813249D01* X125935473Y-75732765D01* X125972516Y-75643336D01* X125991400Y-75548399D01* X125991400Y-75451601D01* X125972516Y-75356664D01* X125935473Y-75267235D01* X125881696Y-75186751D01* X125813249Y-75118304D01* X125763405Y-75085000D01* X130683792Y-75085000D01* X130678637Y-75097446D01* X130657800Y-75202198D01* X130657800Y-75309002D01* X130678637Y-75413754D01* X130719509Y-75512428D01* X130778846Y-75601232D01* X130854368Y-75676754D01* X130943172Y-75736091D01* X131041846Y-75776963D01* X131146598Y-75797800D01* X131253402Y-75797800D01* X131358154Y-75776963D01* X131456828Y-75736091D01* X131545632Y-75676754D01* X131621154Y-75601232D01* X131680491Y-75512428D01* X131721363Y-75413754D01* X131742200Y-75309002D01* X131742200Y-75202198D01* X131721363Y-75097446D01* X131716208Y-75085000D01* X137357168Y-75085000D01* X137327484Y-75156664D01* X137308600Y-75251601D01* X137308600Y-75348399D01* X137327484Y-75443336D01* X137364527Y-75532765D01* X137418304Y-75613249D01* X137486751Y-75681696D01* X137567235Y-75735473D01* X137581736Y-75741480D01* X137564527Y-75767235D01* X137527484Y-75856664D01* X137508600Y-75951601D01* X137508600Y-76048399D01* X137527484Y-76143336D01* X137564527Y-76232765D01* X137618304Y-76313249D01* X137686751Y-76381696D01* X137767235Y-76435473D01* X137856664Y-76472516D01* X137951601Y-76491400D01* X138048399Y-76491400D01* X138143336Y-76472516D01* X138232765Y-76435473D01* X138313249Y-76381696D01* X138381696Y-76313249D01* X138435473Y-76232765D01* X138472516Y-76143336D01* X138480913Y-76101121D01* X147915000Y-85535208D01* X147915000Y-99415000D01* X138962870Y-99415000D01* X138921931Y-99353730D01* X138846270Y-99278069D01* X138757302Y-99218623D01* X138658446Y-99177675D01* X138553500Y-99156800D01* X138446500Y-99156800D01* X138341554Y-99177675D01* X138242698Y-99218623D01* X138153730Y-99278069D01* X138078069Y-99353730D01* X138037130Y-99415000D01* X135710243Y-99415000D01* X135680491Y-99343172D01* X135621154Y-99254368D01* X135545632Y-99178846D01* X135456828Y-99119509D01* X135358154Y-99078637D01* X135253402Y-99057800D01* X135146598Y-99057800D01* X135041846Y-99078637D01* X134943172Y-99119509D01* X134854368Y-99178846D01* X134778846Y-99254368D01* X134719509Y-99343172D01* X134689757Y-99415000D01* X133035208Y-99415000D01* X132066806Y-98446598D01* X133157800Y-98446598D01* X133157800Y-98553402D01* X133178637Y-98658154D01* X133219509Y-98756828D01* X133278846Y-98845632D01* X133354368Y-98921154D01* X133443172Y-98980491D01* X133541846Y-99021363D01* X133646598Y-99042200D01* X133753402Y-99042200D01* X133858154Y-99021363D01* X133956828Y-98980491D01* X134045632Y-98921154D01* X134121154Y-98845632D01* X134180491Y-98756828D01* X134221363Y-98658154D01* X134242200Y-98553402D01* X134242200Y-98446598D01* X136657800Y-98446598D01* X136657800Y-98553402D01* X136678637Y-98658154D01* X136719509Y-98756828D01* X136778846Y-98845632D01* X136854368Y-98921154D01* X136943172Y-98980491D01* X137041846Y-99021363D01* X137146598Y-99042200D01* X137253402Y-99042200D01* X137358154Y-99021363D01* X137456828Y-98980491D01* X137545632Y-98921154D01* X137621154Y-98845632D01* X137680491Y-98756828D01* X137721363Y-98658154D01* X137742200Y-98553402D01* X137742200Y-98546598D01* X139057800Y-98546598D01* X139057800Y-98653402D01* X139078637Y-98758154D01* X139119509Y-98856828D01* X139178846Y-98945632D01* X139254368Y-99021154D01* X139343172Y-99080491D01* X139441846Y-99121363D01* X139546598Y-99142200D01* X139653402Y-99142200D01* X139758154Y-99121363D01* X139856828Y-99080491D01* X139945632Y-99021154D01* X140021154Y-98945632D01* X140080491Y-98856828D01* X140121363Y-98758154D01* X140142200Y-98653402D01* X140142200Y-98546598D01* X140121363Y-98441846D01* X140080491Y-98343172D01* X140021154Y-98254368D01* X139945632Y-98178846D01* X139856828Y-98119509D01* X139758154Y-98078637D01* X139653402Y-98057800D01* X139546598Y-98057800D01* X139441846Y-98078637D01* X139343172Y-98119509D01* X139254368Y-98178846D01* X139178846Y-98254368D01* X139119509Y-98343172D01* X139078637Y-98441846D01* X139057800Y-98546598D01* X137742200Y-98546598D01* X137742200Y-98446598D01* X137721363Y-98341846D01* X137680491Y-98243172D01* X137621154Y-98154368D01* X137545632Y-98078846D01* X137456828Y-98019509D01* X137358154Y-97978637D01* X137253402Y-97957800D01* X137146598Y-97957800D01* X137041846Y-97978637D01* X136943172Y-98019509D01* X136854368Y-98078846D01* X136778846Y-98154368D01* X136719509Y-98243172D01* X136678637Y-98341846D01* X136657800Y-98446598D01* X134242200Y-98446598D01* X134221363Y-98341846D01* X134180491Y-98243172D01* X134121154Y-98154368D01* X134045632Y-98078846D01* X133956828Y-98019509D01* X133858154Y-97978637D01* X133753402Y-97957800D01* X133646598Y-97957800D01* X133541846Y-97978637D01* X133443172Y-98019509D01* X133354368Y-98078846D01* X133278846Y-98154368D01* X133219509Y-98243172D01* X133178637Y-98341846D01* X133157800Y-98446598D01* X132066806Y-98446598D01* X130166806Y-96546598D01* X136657800Y-96546598D01* X136657800Y-96653402D01* X136678637Y-96758154D01* X136719509Y-96856828D01* X136778846Y-96945632D01* X136854368Y-97021154D01* X136943172Y-97080491D01* X137041846Y-97121363D01* X137146598Y-97142200D01* X137253402Y-97142200D01* X137358154Y-97121363D01* X137456828Y-97080491D01* X137545632Y-97021154D01* X137621154Y-96945632D01* X137680491Y-96856828D01* X137721363Y-96758154D01* X137742200Y-96653402D01* X137742200Y-96546598D01* X137721363Y-96441846D01* X137680491Y-96343172D01* X137621154Y-96254368D01* X137545632Y-96178846D01* X137456828Y-96119509D01* X137358154Y-96078637D01* X137253402Y-96057800D01* X137146598Y-96057800D01* X137041846Y-96078637D01* X136943172Y-96119509D01* X136854368Y-96178846D01* X136778846Y-96254368D01* X136719509Y-96343172D01* X136678637Y-96441846D01* X136657800Y-96546598D01* X130166806Y-96546598D01* X128066806Y-94446598D01* X131357800Y-94446598D01* X131357800Y-94553402D01* X131378637Y-94658154D01* X131419509Y-94756828D01* X131478846Y-94845632D01* X131554368Y-94921154D01* X131643172Y-94980491D01* X131741846Y-95021363D01* X131846598Y-95042200D01* X131953402Y-95042200D01* X132058154Y-95021363D01* X132156828Y-94980491D01* X132245632Y-94921154D01* X132321154Y-94845632D01* X132380491Y-94756828D01* X132421363Y-94658154D01* X132442200Y-94553402D01* X132442200Y-94446598D01* X132957800Y-94446598D01* X132957800Y-94553402D01* X132978637Y-94658154D01* X133019509Y-94756828D01* X133078846Y-94845632D01* X133154368Y-94921154D01* X133243172Y-94980491D01* X133341846Y-95021363D01* X133446598Y-95042200D01* X133553402Y-95042200D01* X133658154Y-95021363D01* X133756828Y-94980491D01* X133845632Y-94921154D01* X133921154Y-94845632D01* X133980491Y-94756828D01* X134021363Y-94658154D01* X134042200Y-94553402D01* X134042200Y-94446598D01* X134021363Y-94341846D01* X133980491Y-94243172D01* X133921154Y-94154368D01* X133845632Y-94078846D01* X133756828Y-94019509D01* X133658154Y-93978637D01* X133553402Y-93957800D01* X133446598Y-93957800D01* X133341846Y-93978637D01* X133243172Y-94019509D01* X133154368Y-94078846D01* X133078846Y-94154368D01* X133019509Y-94243172D01* X132978637Y-94341846D01* X132957800Y-94446598D01* X132442200Y-94446598D01* X132421363Y-94341846D01* X132380491Y-94243172D01* X132321154Y-94154368D01* X132245632Y-94078846D01* X132156828Y-94019509D01* X132058154Y-93978637D01* X131953402Y-93957800D01* X131846598Y-93957800D01* X131741846Y-93978637D01* X131643172Y-94019509D01* X131554368Y-94078846D01* X131478846Y-94154368D01* X131419509Y-94243172D01* X131378637Y-94341846D01* X131357800Y-94446598D01* X128066806Y-94446598D01* X126969436Y-93349228D01* X126935473Y-93267235D01* X126881696Y-93186751D01* X126813249Y-93118304D01* X126732765Y-93064527D01* X126650772Y-93030564D01* X126071809Y-92451601D01* X127008600Y-92451601D01* X127008600Y-92548399D01* X127027484Y-92643336D01* X127064527Y-92732765D01* X127118304Y-92813249D01* X127186751Y-92881696D01* X127267235Y-92935473D01* X127356664Y-92972516D01* X127451601Y-92991400D01* X127548399Y-92991400D01* X127643336Y-92972516D01* X127732765Y-92935473D01* X127813249Y-92881696D01* X127881696Y-92813249D01* X127935473Y-92732765D01* X127972516Y-92643336D01* X127991400Y-92548399D01* X127991400Y-92451601D01* X127972516Y-92356664D01* X127935473Y-92267235D01* X127881696Y-92186751D01* X127813249Y-92118304D01* X127732765Y-92064527D01* X127643336Y-92027484D01* X127548399Y-92008600D01* X127451601Y-92008600D01* X127356664Y-92027484D01* X127267235Y-92064527D01* X127186751Y-92118304D01* X127118304Y-92186751D01* X127064527Y-92267235D01* X127027484Y-92356664D01* X127008600Y-92451601D01* X126071809Y-92451601D01* X125969436Y-92349228D01* X125935473Y-92267235D01* X125881696Y-92186751D01* X125813249Y-92118304D01* X125732765Y-92064527D01* X125650772Y-92030564D01* X125071809Y-91451601D01* X126008600Y-91451601D01* X126008600Y-91548399D01* X126027484Y-91643336D01* X126064527Y-91732765D01* X126118304Y-91813249D01* X126186751Y-91881696D01* X126267235Y-91935473D01* X126356664Y-91972516D01* X126451601Y-91991400D01* X126548399Y-91991400D01* X126643336Y-91972516D01* X126732765Y-91935473D01* X126813249Y-91881696D01* X126881696Y-91813249D01* X126935473Y-91732765D01* X126972516Y-91643336D01* X126991400Y-91548399D01* X126991400Y-91451601D01* X126990405Y-91446598D01* X132957800Y-91446598D01* X132957800Y-91553402D01* X132978637Y-91658154D01* X133019509Y-91756828D01* X133078846Y-91845632D01* X133154368Y-91921154D01* X133243172Y-91980491D01* X133341846Y-92021363D01* X133446598Y-92042200D01* X133553402Y-92042200D01* X133658154Y-92021363D01* X133756828Y-91980491D01* X133845632Y-91921154D01* X133921154Y-91845632D01* X133980491Y-91756828D01* X134021363Y-91658154D01* X134042200Y-91553402D01* X134042200Y-91446598D01* X134021363Y-91341846D01* X133980491Y-91243172D01* X133921154Y-91154368D01* X133845632Y-91078846D01* X133756828Y-91019509D01* X133658154Y-90978637D01* X133553402Y-90957800D01* X133446598Y-90957800D01* X133341846Y-90978637D01* X133243172Y-91019509D01* X133154368Y-91078846D01* X133078846Y-91154368D01* X133019509Y-91243172D01* X132978637Y-91341846D01* X132957800Y-91446598D01* X126990405Y-91446598D01* X126972516Y-91356664D01* X126935473Y-91267235D01* X126881696Y-91186751D01* X126813249Y-91118304D01* X126732765Y-91064527D01* X126643336Y-91027484D01* X126548399Y-91008600D01* X126451601Y-91008600D01* X126356664Y-91027484D01* X126267235Y-91064527D01* X126186751Y-91118304D01* X126118304Y-91186751D01* X126064527Y-91267235D01* X126027484Y-91356664D01* X126008600Y-91451601D01* X125071809Y-91451601D01* X124969436Y-91349228D01* X124935473Y-91267235D01* X124881696Y-91186751D01* X124813249Y-91118304D01* X124732765Y-91064527D01* X124650772Y-91030564D01* X124071809Y-90451601D01* X125008600Y-90451601D01* X125008600Y-90548399D01* X125027484Y-90643336D01* X125064527Y-90732765D01* X125118304Y-90813249D01* X125186751Y-90881696D01* X125267235Y-90935473D01* X125356664Y-90972516D01* X125451601Y-90991400D01* X125548399Y-90991400D01* X125643336Y-90972516D01* X125732765Y-90935473D01* X125813249Y-90881696D01* X125881696Y-90813249D01* X125935473Y-90732765D01* X125972516Y-90643336D01* X125991400Y-90548399D01* X125991400Y-90451601D01* X125972516Y-90356664D01* X125935473Y-90267235D01* X125881696Y-90186751D01* X125813249Y-90118304D01* X125732765Y-90064527D01* X125643336Y-90027484D01* X125548399Y-90008600D01* X125451601Y-90008600D01* X125356664Y-90027484D01* X125267235Y-90064527D01* X125186751Y-90118304D01* X125118304Y-90186751D01* X125064527Y-90267235D01* X125027484Y-90356664D01* X125008600Y-90451601D01* X124071809Y-90451601D01* X123969436Y-90349228D01* X123935473Y-90267235D01* X123881696Y-90186751D01* X123813249Y-90118304D01* X123732765Y-90064527D01* X123650772Y-90030564D01* X123071809Y-89451601D01* X124008600Y-89451601D01* X124008600Y-89548399D01* X124027484Y-89643336D01* X124064527Y-89732765D01* X124118304Y-89813249D01* X124186751Y-89881696D01* X124267235Y-89935473D01* X124356664Y-89972516D01* X124451601Y-89991400D01* X124548399Y-89991400D01* X124643336Y-89972516D01* X124732765Y-89935473D01* X124813249Y-89881696D01* X124881696Y-89813249D01* X124935473Y-89732765D01* X124972516Y-89643336D01* X124991400Y-89548399D01* X124991400Y-89451601D01* X127008600Y-89451601D01* X127008600Y-89548399D01* X127027484Y-89643336D01* X127064527Y-89732765D01* X127118304Y-89813249D01* X127186751Y-89881696D01* X127267235Y-89935473D01* X127356664Y-89972516D01* X127451601Y-89991400D01* X127548399Y-89991400D01* X127643336Y-89972516D01* X127732765Y-89935473D01* X127813249Y-89881696D01* X127881696Y-89813249D01* X127903571Y-89780510D01* X134786800Y-89780510D01* X134786800Y-90019490D01* X134833423Y-90253877D01* X134924876Y-90474666D01* X135057646Y-90673370D01* X135226630Y-90842354D01* X135425334Y-90975124D01* X135646123Y-91066577D01* X135880510Y-91113200D01* X136119490Y-91113200D01* X136353877Y-91066577D01* X136574666Y-90975124D01* X136773370Y-90842354D01* X136942354Y-90673370D01* X137075124Y-90474666D01* X137166577Y-90253877D01* X137213200Y-90019490D01* X137213200Y-89780510D01* X137166577Y-89546123D01* X137075124Y-89325334D01* X136942354Y-89126630D01* X136773370Y-88957646D01* X136574666Y-88824876D01* X136353877Y-88733423D01* X136119490Y-88686800D01* X135880510Y-88686800D01* X135646123Y-88733423D01* X135425334Y-88824876D01* X135226630Y-88957646D01* X135057646Y-89126630D01* X134924876Y-89325334D01* X134833423Y-89546123D01* X134786800Y-89780510D01* X127903571Y-89780510D01* X127935473Y-89732765D01* X127972516Y-89643336D01* X127991400Y-89548399D01* X127991400Y-89451601D01* X127972516Y-89356664D01* X127935473Y-89267235D01* X127881696Y-89186751D01* X127813249Y-89118304D01* X127732765Y-89064527D01* X127643336Y-89027484D01* X127548399Y-89008600D01* X127451601Y-89008600D01* X127356664Y-89027484D01* X127267235Y-89064527D01* X127186751Y-89118304D01* X127118304Y-89186751D01* X127064527Y-89267235D01* X127027484Y-89356664D01* X127008600Y-89451601D01* X124991400Y-89451601D01* X124972516Y-89356664D01* X124935473Y-89267235D01* X124881696Y-89186751D01* X124813249Y-89118304D01* X124732765Y-89064527D01* X124643336Y-89027484D01* X124548399Y-89008600D01* X124451601Y-89008600D01* X124356664Y-89027484D01* X124267235Y-89064527D01* X124186751Y-89118304D01* X124118304Y-89186751D01* X124064527Y-89267235D01* X124027484Y-89356664D01* X124008600Y-89451601D01* X123071809Y-89451601D01* X122969436Y-89349228D01* X122935473Y-89267235D01* X122881696Y-89186751D01* X122813249Y-89118304D01* X122732765Y-89064527D01* X122650772Y-89030564D01* X122071809Y-88451601D01* X124008600Y-88451601D01* X124008600Y-88548399D01* X124027484Y-88643336D01* X124064527Y-88732765D01* X124118304Y-88813249D01* X124186751Y-88881696D01* X124267235Y-88935473D01* X124356664Y-88972516D01* X124451601Y-88991400D01* X124548399Y-88991400D01* X124643336Y-88972516D01* X124732765Y-88935473D01* X124813249Y-88881696D01* X124881696Y-88813249D01* X124935473Y-88732765D01* X124972516Y-88643336D01* X124991400Y-88548399D01* X124991400Y-88451601D01* X125008600Y-88451601D01* X125008600Y-88548399D01* X125027484Y-88643336D01* X125064527Y-88732765D01* X125118304Y-88813249D01* X125186751Y-88881696D01* X125267235Y-88935473D01* X125356664Y-88972516D01* X125451601Y-88991400D01* X125548399Y-88991400D01* X125643336Y-88972516D01* X125732765Y-88935473D01* X125813249Y-88881696D01* X125881696Y-88813249D01* X125935473Y-88732765D01* X125972516Y-88643336D01* X125991400Y-88548399D01* X125991400Y-88451601D01* X126008600Y-88451601D01* X126008600Y-88548399D01* X126027484Y-88643336D01* X126064527Y-88732765D01* X126118304Y-88813249D01* X126186751Y-88881696D01* X126267235Y-88935473D01* X126356664Y-88972516D01* X126451601Y-88991400D01* X126548399Y-88991400D01* X126643336Y-88972516D01* X126732765Y-88935473D01* X126813249Y-88881696D01* X126881696Y-88813249D01* X126935473Y-88732765D01* X126972516Y-88643336D01* X126991400Y-88548399D01* X126991400Y-88451601D01* X127008600Y-88451601D01* X127008600Y-88548399D01* X127027484Y-88643336D01* X127064527Y-88732765D01* X127118304Y-88813249D01* X127186751Y-88881696D01* X127267235Y-88935473D01* X127356664Y-88972516D01* X127451601Y-88991400D01* X127548399Y-88991400D01* X127643336Y-88972516D01* X127732765Y-88935473D01* X127813249Y-88881696D01* X127881696Y-88813249D01* X127935473Y-88732765D01* X127972516Y-88643336D01* X127991400Y-88548399D01* X127991400Y-88451601D01* X127972516Y-88356664D01* X127935473Y-88267235D01* X127881696Y-88186751D01* X127813249Y-88118304D01* X127732765Y-88064527D01* X127689481Y-88046598D01* X130657800Y-88046598D01* X130657800Y-88153402D01* X130678637Y-88258154D01* X130719509Y-88356828D01* X130778846Y-88445632D01* X130854368Y-88521154D01* X130943172Y-88580491D01* X131041846Y-88621363D01* X131146598Y-88642200D01* X131253402Y-88642200D01* X131358154Y-88621363D01* X131456828Y-88580491D01* X131545632Y-88521154D01* X131621154Y-88445632D01* X131680491Y-88356828D01* X131684724Y-88346608D01* X139057800Y-88346608D01* X139057800Y-88453412D01* X139078637Y-88558164D01* X139119509Y-88656838D01* X139178846Y-88745642D01* X139254368Y-88821164D01* X139343172Y-88880501D01* X139441846Y-88921373D01* X139546598Y-88942210D01* X139653402Y-88942210D01* X139758154Y-88921373D01* X139856828Y-88880501D01* X139945632Y-88821164D01* X140021154Y-88745642D01* X140080491Y-88656838D01* X140121363Y-88558164D01* X140142200Y-88453412D01* X140142200Y-88346608D01* X140121363Y-88241856D01* X140080491Y-88143182D01* X140021154Y-88054378D01* X139945632Y-87978856D01* X139856828Y-87919519D01* X139758154Y-87878647D01* X139653402Y-87857810D01* X139546598Y-87857810D01* X139441846Y-87878647D01* X139343172Y-87919519D01* X139254368Y-87978856D01* X139178846Y-88054378D01* X139119509Y-88143182D01* X139078637Y-88241856D01* X139057800Y-88346608D01* X131684724Y-88346608D01* X131721363Y-88258154D01* X131742200Y-88153402D01* X131742200Y-88046598D01* X131721363Y-87941846D01* X131680491Y-87843172D01* X131621154Y-87754368D01* X131545632Y-87678846D01* X131456828Y-87619509D01* X131358154Y-87578637D01* X131253402Y-87557800D01* X131146598Y-87557800D01* X131041846Y-87578637D01* X130943172Y-87619509D01* X130854368Y-87678846D01* X130778846Y-87754368D01* X130719509Y-87843172D01* X130678637Y-87941846D01* X130657800Y-88046598D01* X127689481Y-88046598D01* X127643336Y-88027484D01* X127548399Y-88008600D01* X127451601Y-88008600D01* X127356664Y-88027484D01* X127267235Y-88064527D01* X127186751Y-88118304D01* X127118304Y-88186751D01* X127064527Y-88267235D01* X127027484Y-88356664D01* X127008600Y-88451601D01* X126991400Y-88451601D01* X126972516Y-88356664D01* X126935473Y-88267235D01* X126881696Y-88186751D01* X126813249Y-88118304D01* X126732765Y-88064527D01* X126643336Y-88027484D01* X126548399Y-88008600D01* X126451601Y-88008600D01* X126356664Y-88027484D01* X126267235Y-88064527D01* X126186751Y-88118304D01* X126118304Y-88186751D01* X126064527Y-88267235D01* X126027484Y-88356664D01* X126008600Y-88451601D01* X125991400Y-88451601D01* X125972516Y-88356664D01* X125935473Y-88267235D01* X125881696Y-88186751D01* X125813249Y-88118304D01* X125732765Y-88064527D01* X125643336Y-88027484D01* X125548399Y-88008600D01* X125451601Y-88008600D01* X125356664Y-88027484D01* X125267235Y-88064527D01* X125186751Y-88118304D01* X125118304Y-88186751D01* X125064527Y-88267235D01* X125027484Y-88356664D01* X125008600Y-88451601D01* X124991400Y-88451601D01* X124972516Y-88356664D01* X124935473Y-88267235D01* X124881696Y-88186751D01* X124813249Y-88118304D01* X124732765Y-88064527D01* X124643336Y-88027484D01* X124548399Y-88008600D01* X124451601Y-88008600D01* X124356664Y-88027484D01* X124267235Y-88064527D01* X124186751Y-88118304D01* X124118304Y-88186751D01* X124064527Y-88267235D01* X124027484Y-88356664D01* X124008600Y-88451601D01* X122071809Y-88451601D01* X121969436Y-88349228D01* X121935473Y-88267235D01* X121881696Y-88186751D01* X121813249Y-88118304D01* X121732765Y-88064527D01* X121650772Y-88030564D01* X121071809Y-87451601D01* X123008600Y-87451601D01* X123008600Y-87548399D01* X123027484Y-87643336D01* X123064527Y-87732765D01* X123118304Y-87813249D01* X123186751Y-87881696D01* X123267235Y-87935473D01* X123356664Y-87972516D01* X123451601Y-87991400D01* X123548399Y-87991400D01* X123643336Y-87972516D01* X123732765Y-87935473D01* X123813249Y-87881696D01* X123881696Y-87813249D01* X123935473Y-87732765D01* X123972516Y-87643336D01* X123991400Y-87548399D01* X123991400Y-87451601D01* X124008600Y-87451601D01* X124008600Y-87548399D01* X124027484Y-87643336D01* X124064527Y-87732765D01* X124118304Y-87813249D01* X124186751Y-87881696D01* X124267235Y-87935473D01* X124356664Y-87972516D01* X124451601Y-87991400D01* X124548399Y-87991400D01* X124643336Y-87972516D01* X124732765Y-87935473D01* X124813249Y-87881696D01* X124881696Y-87813249D01* X124935473Y-87732765D01* X124972516Y-87643336D01* X124991400Y-87548399D01* X124991400Y-87451601D01* X124972516Y-87356664D01* X124935473Y-87267235D01* X124881696Y-87186751D01* X124813249Y-87118304D01* X124732765Y-87064527D01* X124643336Y-87027484D01* X124548399Y-87008600D01* X124451601Y-87008600D01* X124356664Y-87027484D01* X124267235Y-87064527D01* X124186751Y-87118304D01* X124118304Y-87186751D01* X124064527Y-87267235D01* X124027484Y-87356664D01* X124008600Y-87451601D01* X123991400Y-87451601D01* X123972516Y-87356664D01* X123935473Y-87267235D01* X123881696Y-87186751D01* X123813249Y-87118304D01* X123732765Y-87064527D01* X123643336Y-87027484D01* X123548399Y-87008600D01* X123451601Y-87008600D01* X123356664Y-87027484D01* X123267235Y-87064527D01* X123186751Y-87118304D01* X123118304Y-87186751D01* X123064527Y-87267235D01* X123027484Y-87356664D01* X123008600Y-87451601D01* X121071809Y-87451601D01* X120860104Y-87239896D01* X120847223Y-87229325D01* X120832528Y-87221470D01* X120816583Y-87216633D01* X120800000Y-87215000D01* X117900571Y-87215000D01* X117881696Y-87186751D01* X117813249Y-87118304D01* X117732765Y-87064527D01* X117643336Y-87027484D01* X117548399Y-87008600D01* X117451601Y-87008600D01* X117356664Y-87027484D01* X117267235Y-87064527D01* X117186751Y-87118304D01* X117118304Y-87186751D01* X117099429Y-87215000D01* X116900571Y-87215000D01* X116881696Y-87186751D01* X116813249Y-87118304D01* X116732765Y-87064527D01* X116643336Y-87027484D01* X116548399Y-87008600D01* X116451601Y-87008600D01* X116356664Y-87027484D01* X116267235Y-87064527D01* X116186751Y-87118304D01* X116118304Y-87186751D01* X116099429Y-87215000D01* X115900571Y-87215000D01* X115881696Y-87186751D01* X115813249Y-87118304D01* X115732765Y-87064527D01* X115643336Y-87027484D01* X115548399Y-87008600D01* X115451601Y-87008600D01* X115356664Y-87027484D01* X115267235Y-87064527D01* X115186751Y-87118304D01* X115118304Y-87186751D01* X115099429Y-87215000D01* X114900571Y-87215000D01* X114881696Y-87186751D01* X114813249Y-87118304D01* X114732765Y-87064527D01* X114643336Y-87027484D01* X114548399Y-87008600D01* X114451601Y-87008600D01* X114356664Y-87027484D01* X114267235Y-87064527D01* X114186751Y-87118304D01* X114118304Y-87186751D01* X114099429Y-87215000D01* X113900571Y-87215000D01* X113881696Y-87186751D01* X113813249Y-87118304D01* X113732765Y-87064527D01* X113643336Y-87027484D01* X113548399Y-87008600D01* X113451601Y-87008600D01* X113356664Y-87027484D01* X113267235Y-87064527D01* X113186751Y-87118304D01* X113118304Y-87186751D01* X113099429Y-87215000D01* X110085000Y-87215000D01* X110085000Y-86763405D01* X110118304Y-86813249D01* X110186751Y-86881696D01* X110267235Y-86935473D01* X110356664Y-86972516D01* X110451601Y-86991400D01* X110548399Y-86991400D01* X110643336Y-86972516D01* X110732765Y-86935473D01* X110813249Y-86881696D01* X110881696Y-86813249D01* X110935473Y-86732765D01* X110972516Y-86643336D01* X110991400Y-86548399D01* X110991400Y-86451601D01* X112008600Y-86451601D01* X112008600Y-86548399D01* X112027484Y-86643336D01* X112064527Y-86732765D01* X112118304Y-86813249D01* X112186751Y-86881696D01* X112267235Y-86935473D01* X112356664Y-86972516D01* X112451601Y-86991400D01* X112548399Y-86991400D01* X112643336Y-86972516D01* X112732765Y-86935473D01* X112813249Y-86881696D01* X112881696Y-86813249D01* X112935473Y-86732765D01* X112972516Y-86643336D01* X112991400Y-86548399D01* X112991400Y-86451601D01* X118008600Y-86451601D01* X118008600Y-86548399D01* X118027484Y-86643336D01* X118064527Y-86732765D01* X118118304Y-86813249D01* X118186751Y-86881696D01* X118267235Y-86935473D01* X118356664Y-86972516D01* X118451601Y-86991400D01* X118548399Y-86991400D01* X118643336Y-86972516D01* X118732765Y-86935473D01* X118813249Y-86881696D01* X118881696Y-86813249D01* X118935473Y-86732765D01* X118972516Y-86643336D01* X118991400Y-86548399D01* X118991400Y-86451601D01* X120008600Y-86451601D01* X120008600Y-86548399D01* X120027484Y-86643336D01* X120064527Y-86732765D01* X120118304Y-86813249D01* X120186751Y-86881696D01* X120267235Y-86935473D01* X120356664Y-86972516D01* X120451601Y-86991400D01* X120548399Y-86991400D01* X120643336Y-86972516D01* X120732765Y-86935473D01* X120813249Y-86881696D01* X120881696Y-86813249D01* X120935473Y-86732765D01* X120972516Y-86643336D01* X120991400Y-86548399D01* X120991400Y-86451601D01* X123008600Y-86451601D01* X123008600Y-86548399D01* X123027484Y-86643336D01* X123064527Y-86732765D01* X123118304Y-86813249D01* X123186751Y-86881696D01* X123267235Y-86935473D01* X123356664Y-86972516D01* X123451601Y-86991400D01* X123548399Y-86991400D01* X123643336Y-86972516D01* X123732765Y-86935473D01* X123813249Y-86881696D01* X123881696Y-86813249D01* X123935473Y-86732765D01* X123972516Y-86643336D01* X123991400Y-86548399D01* X123991400Y-86451601D01* X125008600Y-86451601D01* X125008600Y-86548399D01* X125027484Y-86643336D01* X125064527Y-86732765D01* X125118304Y-86813249D01* X125186751Y-86881696D01* X125267235Y-86935473D01* X125356664Y-86972516D01* X125451601Y-86991400D01* X125548399Y-86991400D01* X125643336Y-86972516D01* X125732765Y-86935473D01* X125813249Y-86881696D01* X125881696Y-86813249D01* X125935473Y-86732765D01* X125972516Y-86643336D01* X125991400Y-86548399D01* X125991400Y-86490998D01* X137465599Y-86490998D01* X137465599Y-86597802D01* X137486436Y-86702554D01* X137527308Y-86801228D01* X137586645Y-86890032D01* X137596613Y-86900000D01* X137586645Y-86909968D01* X137527308Y-86998772D01* X137486436Y-87097446D01* X137465599Y-87202198D01* X137465599Y-87309002D01* X137486436Y-87413754D01* X137527308Y-87512428D01* X137586645Y-87601232D01* X137662167Y-87676754D01* X137750971Y-87736091D01* X137849645Y-87776963D01* X137954397Y-87797800D01* X138061201Y-87797800D01* X138165953Y-87776963D01* X138264627Y-87736091D01* X138353431Y-87676754D01* X138428953Y-87601232D01* X138488290Y-87512428D01* X138529162Y-87413754D01* X138549999Y-87309002D01* X138549999Y-87302459D01* X138578846Y-87345632D01* X138654368Y-87421154D01* X138743172Y-87480491D01* X138841846Y-87521363D01* X138946598Y-87542200D01* X139053402Y-87542200D01* X139158154Y-87521363D01* X139256828Y-87480491D01* X139345632Y-87421154D01* X139421154Y-87345632D01* X139480491Y-87256828D01* X139521363Y-87158154D01* X139542200Y-87053402D01* X139542200Y-86946598D01* X139521363Y-86841846D01* X139480491Y-86743172D01* X139421154Y-86654368D01* X139345632Y-86578846D01* X139256828Y-86519509D01* X139158154Y-86478637D01* X139053402Y-86457800D01* X138946598Y-86457800D01* X138841846Y-86478637D01* X138743172Y-86519509D01* X138654368Y-86578846D01* X138578846Y-86654368D01* X138519509Y-86743172D01* X138478637Y-86841846D01* X138457800Y-86946598D01* X138457800Y-86953141D01* X138428953Y-86909968D01* X138418985Y-86900000D01* X138428953Y-86890032D01* X138488290Y-86801228D01* X138529162Y-86702554D01* X138549999Y-86597802D01* X138549999Y-86490998D01* X138529162Y-86386246D01* X138488290Y-86287572D01* X138428953Y-86198768D01* X138353431Y-86123246D01* X138264627Y-86063909D01* X138165953Y-86023037D01* X138061201Y-86002200D01* X137954397Y-86002200D01* X137849645Y-86023037D01* X137750971Y-86063909D01* X137662167Y-86123246D01* X137586645Y-86198768D01* X137527308Y-86287572D01* X137486436Y-86386246D01* X137465599Y-86490998D01* X125991400Y-86490998D01* X125991400Y-86451601D01* X125972516Y-86356664D01* X125935473Y-86267235D01* X125881696Y-86186751D01* X125813249Y-86118304D01* X125732765Y-86064527D01* X125643336Y-86027484D01* X125548399Y-86008600D01* X125451601Y-86008600D01* X125356664Y-86027484D01* X125267235Y-86064527D01* X125186751Y-86118304D01* X125118304Y-86186751D01* X125064527Y-86267235D01* X125027484Y-86356664D01* X125008600Y-86451601D01* X123991400Y-86451601D01* X123972516Y-86356664D01* X123935473Y-86267235D01* X123881696Y-86186751D01* X123813249Y-86118304D01* X123732765Y-86064527D01* X123643336Y-86027484D01* X123548399Y-86008600D01* X123451601Y-86008600D01* X123356664Y-86027484D01* X123267235Y-86064527D01* X123186751Y-86118304D01* X123118304Y-86186751D01* X123064527Y-86267235D01* X123027484Y-86356664D01* X123008600Y-86451601D01* X120991400Y-86451601D01* X120972516Y-86356664D01* X120935473Y-86267235D01* X120881696Y-86186751D01* X120813249Y-86118304D01* X120732765Y-86064527D01* X120643336Y-86027484D01* X120548399Y-86008600D01* X120451601Y-86008600D01* X120356664Y-86027484D01* X120267235Y-86064527D01* X120186751Y-86118304D01* X120118304Y-86186751D01* X120064527Y-86267235D01* X120027484Y-86356664D01* X120008600Y-86451601D01* X118991400Y-86451601D01* X118972516Y-86356664D01* X118935473Y-86267235D01* X118881696Y-86186751D01* X118813249Y-86118304D01* X118732765Y-86064527D01* X118643336Y-86027484D01* X118548399Y-86008600D01* X118451601Y-86008600D01* X118356664Y-86027484D01* X118267235Y-86064527D01* X118186751Y-86118304D01* X118118304Y-86186751D01* X118064527Y-86267235D01* X118027484Y-86356664D01* X118008600Y-86451601D01* X112991400Y-86451601D01* X112972516Y-86356664D01* X112935473Y-86267235D01* X112881696Y-86186751D01* X112813249Y-86118304D01* X112732765Y-86064527D01* X112643336Y-86027484D01* X112548399Y-86008600D01* X112451601Y-86008600D01* X112356664Y-86027484D01* X112267235Y-86064527D01* X112186751Y-86118304D01* X112118304Y-86186751D01* X112064527Y-86267235D01* X112027484Y-86356664D01* X112008600Y-86451601D01* X110991400Y-86451601D01* X110972516Y-86356664D01* X110935473Y-86267235D01* X110881696Y-86186751D01* X110813249Y-86118304D01* X110732765Y-86064527D01* X110643336Y-86027484D01* X110548399Y-86008600D01* X110451601Y-86008600D01* X110356664Y-86027484D01* X110267235Y-86064527D01* X110186751Y-86118304D01* X110118304Y-86186751D01* X110085000Y-86236595D01* X110085000Y-85451601D01* X116008600Y-85451601D01* X116008600Y-85548399D01* X116027484Y-85643336D01* X116064527Y-85732765D01* X116118304Y-85813249D01* X116186751Y-85881696D01* X116267235Y-85935473D01* X116356664Y-85972516D01* X116451601Y-85991400D01* X116548399Y-85991400D01* X116643336Y-85972516D01* X116732765Y-85935473D01* X116813249Y-85881696D01* X116881696Y-85813249D01* X116935473Y-85732765D01* X116972516Y-85643336D01* X116991400Y-85548399D01* X116991400Y-85451601D01* X118008600Y-85451601D01* X118008600Y-85548399D01* X118027484Y-85643336D01* X118064527Y-85732765D01* X118118304Y-85813249D01* X118186751Y-85881696D01* X118267235Y-85935473D01* X118356664Y-85972516D01* X118451601Y-85991400D01* X118548399Y-85991400D01* X118643336Y-85972516D01* X118732765Y-85935473D01* X118813249Y-85881696D01* X118881696Y-85813249D01* X118935473Y-85732765D01* X118972516Y-85643336D01* X118991400Y-85548399D01* X118991400Y-85451601D01* X122008600Y-85451601D01* X122008600Y-85548399D01* X122027484Y-85643336D01* X122064527Y-85732765D01* X122118304Y-85813249D01* X122186751Y-85881696D01* X122267235Y-85935473D01* X122356664Y-85972516D01* X122451601Y-85991400D01* X122548399Y-85991400D01* X122643336Y-85972516D01* X122732765Y-85935473D01* X122813249Y-85881696D01* X122881696Y-85813249D01* X122935473Y-85732765D01* X122972516Y-85643336D01* X122991400Y-85548399D01* X122991400Y-85451601D01* X124008600Y-85451601D01* X124008600Y-85548399D01* X124027484Y-85643336D01* X124064527Y-85732765D01* X124118304Y-85813249D01* X124186751Y-85881696D01* X124267235Y-85935473D01* X124356664Y-85972516D01* X124451601Y-85991400D01* X124548399Y-85991400D01* X124643336Y-85972516D01* X124732765Y-85935473D01* X124813249Y-85881696D01* X124881696Y-85813249D01* X124935473Y-85732765D01* X124972516Y-85643336D01* X124991400Y-85548399D01* X124991400Y-85451601D01* X125008600Y-85451601D01* X125008600Y-85548399D01* X125027484Y-85643336D01* X125064527Y-85732765D01* X125118304Y-85813249D01* X125186751Y-85881696D01* X125267235Y-85935473D01* X125356664Y-85972516D01* X125451601Y-85991400D01* X125548399Y-85991400D01* X125643336Y-85972516D01* X125732765Y-85935473D01* X125813249Y-85881696D01* X125881696Y-85813249D01* X125935473Y-85732765D01* X125971164Y-85646598D01* X130657800Y-85646598D01* X130657800Y-85753402D01* X130678637Y-85858154D01* X130719509Y-85956828D01* X130778846Y-86045632D01* X130854368Y-86121154D01* X130943172Y-86180491D01* X131041846Y-86221363D01* X131146598Y-86242200D01* X131253402Y-86242200D01* X131358154Y-86221363D01* X131456828Y-86180491D01* X131545632Y-86121154D01* X131621154Y-86045632D01* X131680491Y-85956828D01* X131721363Y-85858154D01* X131742200Y-85753402D01* X131742200Y-85646598D01* X131722309Y-85546598D01* X133957800Y-85546598D01* X133957800Y-85653402D01* X133978637Y-85758154D01* X134019509Y-85856828D01* X134078846Y-85945632D01* X134154368Y-86021154D01* X134243172Y-86080491D01* X134341846Y-86121363D01* X134446598Y-86142200D01* X134553402Y-86142200D01* X134658154Y-86121363D01* X134756828Y-86080491D01* X134845632Y-86021154D01* X134921154Y-85945632D01* X134953982Y-85896500D01* X140156800Y-85896500D01* X140156800Y-86003500D01* X140177675Y-86108446D01* X140218623Y-86207302D01* X140278069Y-86296270D01* X140353730Y-86371931D01* X140442698Y-86431377D01* X140541554Y-86472325D01* X140646500Y-86493200D01* X140753500Y-86493200D01* X140858446Y-86472325D01* X140920555Y-86446598D01* X143557800Y-86446598D01* X143557800Y-86553402D01* X143578637Y-86658154D01* X143619509Y-86756828D01* X143678846Y-86845632D01* X143754368Y-86921154D01* X143843172Y-86980491D01* X143941846Y-87021363D01* X144046598Y-87042200D01* X144153402Y-87042200D01* X144258154Y-87021363D01* X144356828Y-86980491D01* X144445632Y-86921154D01* X144521154Y-86845632D01* X144580491Y-86756828D01* X144621363Y-86658154D01* X144642200Y-86553402D01* X144642200Y-86446598D01* X144621363Y-86341846D01* X144580491Y-86243172D01* X144521154Y-86154368D01* X144445632Y-86078846D01* X144356828Y-86019509D01* X144258154Y-85978637D01* X144153402Y-85957800D01* X144046598Y-85957800D01* X143941846Y-85978637D01* X143843172Y-86019509D01* X143754368Y-86078846D01* X143678846Y-86154368D01* X143619509Y-86243172D01* X143578637Y-86341846D01* X143557800Y-86446598D01* X140920555Y-86446598D01* X140957302Y-86431377D01* X141046270Y-86371931D01* X141121931Y-86296270D01* X141181377Y-86207302D01* X141222325Y-86108446D01* X141243200Y-86003500D01* X141243200Y-85896500D01* X141222325Y-85791554D01* X141181377Y-85692698D01* X141121931Y-85603730D01* X141046270Y-85528069D01* X140957302Y-85468623D01* X140858446Y-85427675D01* X140753500Y-85406800D01* X140646500Y-85406800D01* X140541554Y-85427675D01* X140442698Y-85468623D01* X140353730Y-85528069D01* X140278069Y-85603730D01* X140218623Y-85692698D01* X140177675Y-85791554D01* X140156800Y-85896500D01* X134953982Y-85896500D01* X134980491Y-85856828D01* X135021363Y-85758154D01* X135042200Y-85653402D01* X135042200Y-85546598D01* X135021363Y-85441846D01* X134980491Y-85343172D01* X134921154Y-85254368D01* X134845632Y-85178846D01* X134756828Y-85119509D01* X134658154Y-85078637D01* X134553402Y-85057800D01* X134446598Y-85057800D01* X134341846Y-85078637D01* X134243172Y-85119509D01* X134154368Y-85178846D01* X134078846Y-85254368D01* X134019509Y-85343172D01* X133978637Y-85441846D01* X133957800Y-85546598D01* X131722309Y-85546598D01* X131721363Y-85541846D01* X131680491Y-85443172D01* X131621154Y-85354368D01* X131545632Y-85278846D01* X131456828Y-85219509D01* X131358154Y-85178637D01* X131253402Y-85157800D01* X131146598Y-85157800D01* X131041846Y-85178637D01* X130943172Y-85219509D01* X130854368Y-85278846D01* X130778846Y-85354368D01* X130719509Y-85443172D01* X130678637Y-85541846D01* X130657800Y-85646598D01* X125971164Y-85646598D01* X125972516Y-85643336D01* X125991400Y-85548399D01* X125991400Y-85451601D01* X125972516Y-85356664D01* X125935473Y-85267235D01* X125881696Y-85186751D01* X125813249Y-85118304D01* X125732765Y-85064527D01* X125643336Y-85027484D01* X125548399Y-85008600D01* X125451601Y-85008600D01* X125356664Y-85027484D01* X125267235Y-85064527D01* X125186751Y-85118304D01* X125118304Y-85186751D01* X125064527Y-85267235D01* X125027484Y-85356664D01* X125008600Y-85451601D01* X124991400Y-85451601D01* X124972516Y-85356664D01* X124935473Y-85267235D01* X124881696Y-85186751D01* X124813249Y-85118304D01* X124732765Y-85064527D01* X124643336Y-85027484D01* X124548399Y-85008600D01* X124451601Y-85008600D01* X124356664Y-85027484D01* X124267235Y-85064527D01* X124186751Y-85118304D01* X124118304Y-85186751D01* X124064527Y-85267235D01* X124027484Y-85356664D01* X124008600Y-85451601D01* X122991400Y-85451601D01* X122972516Y-85356664D01* X122935473Y-85267235D01* X122881696Y-85186751D01* X122813249Y-85118304D01* X122732765Y-85064527D01* X122643336Y-85027484D01* X122548399Y-85008600D01* X122451601Y-85008600D01* X122356664Y-85027484D01* X122267235Y-85064527D01* X122186751Y-85118304D01* X122118304Y-85186751D01* X122064527Y-85267235D01* X122027484Y-85356664D01* X122008600Y-85451601D01* X118991400Y-85451601D01* X118972516Y-85356664D01* X118935473Y-85267235D01* X118881696Y-85186751D01* X118813249Y-85118304D01* X118732765Y-85064527D01* X118643336Y-85027484D01* X118548399Y-85008600D01* X118451601Y-85008600D01* X118356664Y-85027484D01* X118267235Y-85064527D01* X118186751Y-85118304D01* X118118304Y-85186751D01* X118064527Y-85267235D01* X118027484Y-85356664D01* X118008600Y-85451601D01* X116991400Y-85451601D01* X116972516Y-85356664D01* X116935473Y-85267235D01* X116881696Y-85186751D01* X116813249Y-85118304D01* X116732765Y-85064527D01* X116643336Y-85027484D01* X116548399Y-85008600D01* X116451601Y-85008600D01* X116356664Y-85027484D01* X116267235Y-85064527D01* X116186751Y-85118304D01* X116118304Y-85186751D01* X116064527Y-85267235D01* X116027484Y-85356664D01* X116008600Y-85451601D01* X110085000Y-85451601D01* X110085000Y-84763405D01* X110118304Y-84813249D01* X110186751Y-84881696D01* X110267235Y-84935473D01* X110356664Y-84972516D01* X110451601Y-84991400D01* X110548399Y-84991400D01* X110643336Y-84972516D01* X110732765Y-84935473D01* X110813249Y-84881696D01* X110881696Y-84813249D01* X110935473Y-84732765D01* X110972516Y-84643336D01* X110991400Y-84548399D01* X110991400Y-84451601D01* X116008600Y-84451601D01* X116008600Y-84548399D01* X116027484Y-84643336D01* X116064527Y-84732765D01* X116118304Y-84813249D01* X116186751Y-84881696D01* X116267235Y-84935473D01* X116356664Y-84972516D01* X116451601Y-84991400D01* X116548399Y-84991400D01* X116643336Y-84972516D01* X116732765Y-84935473D01* X116813249Y-84881696D01* X116881696Y-84813249D01* X116935473Y-84732765D01* X116972516Y-84643336D01* X116991400Y-84548399D01* X116991400Y-84451601D01* X119008600Y-84451601D01* X119008600Y-84548399D01* X119027484Y-84643336D01* X119064527Y-84732765D01* X119118304Y-84813249D01* X119186751Y-84881696D01* X119267235Y-84935473D01* X119356664Y-84972516D01* X119451601Y-84991400D01* X119548399Y-84991400D01* X119643336Y-84972516D01* X119732765Y-84935473D01* X119813249Y-84881696D01* X119881696Y-84813249D01* X119935473Y-84732765D01* X119972516Y-84643336D01* X119991400Y-84548399D01* X119991400Y-84451601D01* X120008600Y-84451601D01* X120008600Y-84548399D01* X120027484Y-84643336D01* X120064527Y-84732765D01* X120118304Y-84813249D01* X120186751Y-84881696D01* X120267235Y-84935473D01* X120356664Y-84972516D01* X120451601Y-84991400D01* X120548399Y-84991400D01* X120643336Y-84972516D01* X120732765Y-84935473D01* X120813249Y-84881696D01* X120881696Y-84813249D01* X120935473Y-84732765D01* X120972516Y-84643336D01* X120991400Y-84548399D01* X120991400Y-84451601D01* X121008600Y-84451601D01* X121008600Y-84548399D01* X121027484Y-84643336D01* X121064527Y-84732765D01* X121118304Y-84813249D01* X121186751Y-84881696D01* X121267235Y-84935473D01* X121356664Y-84972516D01* X121451601Y-84991400D01* X121548399Y-84991400D01* X121643336Y-84972516D01* X121732765Y-84935473D01* X121813249Y-84881696D01* X121881696Y-84813249D01* X121935473Y-84732765D01* X121972516Y-84643336D01* X121991400Y-84548399D01* X121991400Y-84451601D01* X122008600Y-84451601D01* X122008600Y-84548399D01* X122027484Y-84643336D01* X122064527Y-84732765D01* X122118304Y-84813249D01* X122186751Y-84881696D01* X122267235Y-84935473D01* X122356664Y-84972516D01* X122451601Y-84991400D01* X122548399Y-84991400D01* X122643336Y-84972516D01* X122732765Y-84935473D01* X122813249Y-84881696D01* X122881696Y-84813249D01* X122935473Y-84732765D01* X122972516Y-84643336D01* X122991400Y-84548399D01* X122991400Y-84451601D01* X124008600Y-84451601D01* X124008600Y-84548399D01* X124027484Y-84643336D01* X124064527Y-84732765D01* X124118304Y-84813249D01* X124186751Y-84881696D01* X124267235Y-84935473D01* X124356664Y-84972516D01* X124451601Y-84991400D01* X124548399Y-84991400D01* X124643336Y-84972516D01* X124732765Y-84935473D01* X124813249Y-84881696D01* X124881696Y-84813249D01* X124935473Y-84732765D01* X124972516Y-84643336D01* X124991400Y-84548399D01* X124991400Y-84451601D01* X125008600Y-84451601D01* X125008600Y-84548399D01* X125027484Y-84643336D01* X125064527Y-84732765D01* X125118304Y-84813249D01* X125186751Y-84881696D01* X125267235Y-84935473D01* X125356664Y-84972516D01* X125451601Y-84991400D01* X125548399Y-84991400D01* X125643336Y-84972516D01* X125732765Y-84935473D01* X125813249Y-84881696D01* X125881696Y-84813249D01* X125935473Y-84732765D01* X125972516Y-84643336D01* X125991400Y-84548399D01* X125991400Y-84451601D01* X125991397Y-84451581D01* X126008600Y-84451581D01* X126008600Y-84548379D01* X126027484Y-84643316D01* X126064527Y-84732745D01* X126118304Y-84813229D01* X126186751Y-84881676D01* X126267235Y-84935453D01* X126356664Y-84972496D01* X126451601Y-84991380D01* X126548399Y-84991380D01* X126643336Y-84972496D01* X126732765Y-84935453D01* X126813249Y-84881676D01* X126881696Y-84813229D01* X126935473Y-84732745D01* X126972516Y-84643316D01* X126991400Y-84548379D01* X126991400Y-84451581D01* X126972516Y-84356644D01* X126935473Y-84267215D01* X126881696Y-84186731D01* X126813249Y-84118284D01* X126732765Y-84064507D01* X126643336Y-84027464D01* X126548399Y-84008580D01* X126451601Y-84008580D01* X126356664Y-84027464D01* X126267235Y-84064507D01* X126186751Y-84118284D01* X126118304Y-84186731D01* X126064527Y-84267215D01* X126027484Y-84356644D01* X126008600Y-84451581D01* X125991397Y-84451581D01* X125972516Y-84356664D01* X125935473Y-84267235D01* X125881696Y-84186751D01* X125813249Y-84118304D01* X125732765Y-84064527D01* X125643336Y-84027484D01* X125548399Y-84008600D01* X125451601Y-84008600D01* X125356664Y-84027484D01* X125267235Y-84064527D01* X125186751Y-84118304D01* X125118304Y-84186751D01* X125064527Y-84267235D01* X125027484Y-84356664D01* X125008600Y-84451601D01* X124991400Y-84451601D01* X124972516Y-84356664D01* X124935473Y-84267235D01* X124881696Y-84186751D01* X124813249Y-84118304D01* X124732765Y-84064527D01* X124643336Y-84027484D01* X124548399Y-84008600D01* X124451601Y-84008600D01* X124356664Y-84027484D01* X124267235Y-84064527D01* X124186751Y-84118304D01* X124118304Y-84186751D01* X124064527Y-84267235D01* X124027484Y-84356664D01* X124008600Y-84451601D01* X122991400Y-84451601D01* X122972516Y-84356664D01* X122935473Y-84267235D01* X122881696Y-84186751D01* X122813249Y-84118304D01* X122732765Y-84064527D01* X122643336Y-84027484D01* X122548399Y-84008600D01* X122451601Y-84008600D01* X122356664Y-84027484D01* X122267235Y-84064527D01* X122186751Y-84118304D01* X122118304Y-84186751D01* X122064527Y-84267235D01* X122027484Y-84356664D01* X122008600Y-84451601D01* X121991400Y-84451601D01* X121972516Y-84356664D01* X121935473Y-84267235D01* X121881696Y-84186751D01* X121813249Y-84118304D01* X121732765Y-84064527D01* X121643336Y-84027484D01* X121548399Y-84008600D01* X121451601Y-84008600D01* X121356664Y-84027484D01* X121267235Y-84064527D01* X121186751Y-84118304D01* X121118304Y-84186751D01* X121064527Y-84267235D01* X121027484Y-84356664D01* X121008600Y-84451601D01* X120991400Y-84451601D01* X120972516Y-84356664D01* X120935473Y-84267235D01* X120881696Y-84186751D01* X120813249Y-84118304D01* X120732765Y-84064527D01* X120643336Y-84027484D01* X120548399Y-84008600D01* X120451601Y-84008600D01* X120356664Y-84027484D01* X120267235Y-84064527D01* X120186751Y-84118304D01* X120118304Y-84186751D01* X120064527Y-84267235D01* X120027484Y-84356664D01* X120008600Y-84451601D01* X119991400Y-84451601D01* X119972516Y-84356664D01* X119935473Y-84267235D01* X119881696Y-84186751D01* X119813249Y-84118304D01* X119732765Y-84064527D01* X119643336Y-84027484D01* X119548399Y-84008600D01* X119451601Y-84008600D01* X119356664Y-84027484D01* X119267235Y-84064527D01* X119186751Y-84118304D01* X119118304Y-84186751D01* X119064527Y-84267235D01* X119027484Y-84356664D01* X119008600Y-84451601D01* X116991400Y-84451601D01* X116972516Y-84356664D01* X116935473Y-84267235D01* X116881696Y-84186751D01* X116813249Y-84118304D01* X116732765Y-84064527D01* X116643336Y-84027484D01* X116548399Y-84008600D01* X116451601Y-84008600D01* X116356664Y-84027484D01* X116267235Y-84064527D01* X116186751Y-84118304D01* X116118304Y-84186751D01* X116064527Y-84267235D01* X116027484Y-84356664D01* X116008600Y-84451601D01* X110991400Y-84451601D01* X110972516Y-84356664D01* X110935473Y-84267235D01* X110881696Y-84186751D01* X110813249Y-84118304D01* X110732765Y-84064527D01* X110643336Y-84027484D01* X110548399Y-84008600D01* X110451601Y-84008600D01* X110356664Y-84027484D01* X110267235Y-84064527D01* X110186751Y-84118304D01* X110118304Y-84186751D01* X110085000Y-84236595D01* X110085000Y-83451601D01* X111008600Y-83451601D01* X111008600Y-83548399D01* X111027484Y-83643336D01* X111064527Y-83732765D01* X111118304Y-83813249D01* X111186751Y-83881696D01* X111267235Y-83935473D01* X111356664Y-83972516D01* X111451601Y-83991400D01* X111548399Y-83991400D01* X111643336Y-83972516D01* X111732765Y-83935473D01* X111813249Y-83881696D01* X111881696Y-83813249D01* X111935473Y-83732765D01* X111972516Y-83643336D01* X111991400Y-83548399D01* X111991400Y-83451601D01* X114008600Y-83451601D01* X114008600Y-83548399D01* X114027484Y-83643336D01* X114064527Y-83732765D01* X114118304Y-83813249D01* X114186751Y-83881696D01* X114267235Y-83935473D01* X114356664Y-83972516D01* X114451601Y-83991400D01* X114548399Y-83991400D01* X114643336Y-83972516D01* X114732765Y-83935473D01* X114813249Y-83881696D01* X114881696Y-83813249D01* X114935473Y-83732765D01* X114972516Y-83643336D01* X114991400Y-83548399D01* X114991400Y-83451601D01* X117008600Y-83451601D01* X117008600Y-83548399D01* X117027484Y-83643336D01* X117064527Y-83732765D01* X117118304Y-83813249D01* X117186751Y-83881696D01* X117267235Y-83935473D01* X117356664Y-83972516D01* X117451601Y-83991400D01* X117548399Y-83991400D01* X117643336Y-83972516D01* X117732765Y-83935473D01* X117813249Y-83881696D01* X117881696Y-83813249D01* X117935473Y-83732765D01* X117972516Y-83643336D01* X117991400Y-83548399D01* X117991400Y-83451601D01* X121008600Y-83451601D01* X121008600Y-83548399D01* X121027484Y-83643336D01* X121064527Y-83732765D01* X121118304Y-83813249D01* X121186751Y-83881696D01* X121267235Y-83935473D01* X121356664Y-83972516D01* X121451601Y-83991400D01* X121548399Y-83991400D01* X121643336Y-83972516D01* X121732765Y-83935473D01* X121813249Y-83881696D01* X121881696Y-83813249D01* X121935473Y-83732765D01* X121972516Y-83643336D01* X121991400Y-83548399D01* X121991400Y-83451601D01* X122008600Y-83451601D01* X122008600Y-83548399D01* X122027484Y-83643336D01* X122064527Y-83732765D01* X122118304Y-83813249D01* X122186751Y-83881696D01* X122267235Y-83935473D01* X122356664Y-83972516D01* X122451601Y-83991400D01* X122548399Y-83991400D01* X122643336Y-83972516D01* X122732765Y-83935473D01* X122813249Y-83881696D01* X122881696Y-83813249D01* X122935473Y-83732765D01* X122972516Y-83643336D01* X122991400Y-83548399D01* X122991400Y-83451601D01* X123008600Y-83451601D01* X123008600Y-83548399D01* X123027484Y-83643336D01* X123064527Y-83732765D01* X123118304Y-83813249D01* X123186751Y-83881696D01* X123267235Y-83935473D01* X123356664Y-83972516D01* X123451601Y-83991400D01* X123548399Y-83991400D01* X123643336Y-83972516D01* X123732765Y-83935473D01* X123813249Y-83881696D01* X123881696Y-83813249D01* X123935473Y-83732765D01* X123972516Y-83643336D01* X123991400Y-83548399D01* X123991400Y-83451601D01* X124008600Y-83451601D01* X124008600Y-83548399D01* X124027484Y-83643336D01* X124064527Y-83732765D01* X124118304Y-83813249D01* X124186751Y-83881696D01* X124267235Y-83935473D01* X124356664Y-83972516D01* X124451601Y-83991400D01* X124548399Y-83991400D01* X124643336Y-83972516D01* X124732765Y-83935473D01* X124813249Y-83881696D01* X124881696Y-83813249D01* X124935473Y-83732765D01* X124972516Y-83643336D01* X124991400Y-83548399D01* X124991400Y-83451601D01* X125008600Y-83451601D01* X125008600Y-83548399D01* X125027484Y-83643336D01* X125064527Y-83732765D01* X125118304Y-83813249D01* X125186751Y-83881696D01* X125267235Y-83935473D01* X125356664Y-83972516D01* X125451601Y-83991400D01* X125548399Y-83991400D01* X125643336Y-83972516D01* X125732765Y-83935473D01* X125813249Y-83881696D01* X125881696Y-83813249D01* X125935473Y-83732765D01* X125972516Y-83643336D01* X125991400Y-83548399D01* X125991400Y-83451601D01* X126008600Y-83451601D01* X126008600Y-83548399D01* X126027484Y-83643336D01* X126064527Y-83732765D01* X126118304Y-83813249D01* X126186751Y-83881696D01* X126267235Y-83935473D01* X126356664Y-83972516D01* X126451601Y-83991400D01* X126548399Y-83991400D01* X126643336Y-83972516D01* X126732765Y-83935473D01* X126813249Y-83881696D01* X126881696Y-83813249D01* X126935473Y-83732765D01* X126972516Y-83643336D01* X126991400Y-83548399D01* X126991400Y-83451601D01* X127008618Y-83451601D01* X127008618Y-83548399D01* X127027502Y-83643336D01* X127064545Y-83732765D01* X127118322Y-83813249D01* X127186769Y-83881696D01* X127267253Y-83935473D01* X127356682Y-83972516D01* X127451619Y-83991400D01* X127548417Y-83991400D01* X127643354Y-83972516D01* X127732783Y-83935473D01* X127813267Y-83881696D01* X127881714Y-83813249D01* X127935491Y-83732765D01* X127972534Y-83643336D01* X127991418Y-83548399D01* X127991418Y-83451601D01* X130308600Y-83451601D01* X130308600Y-83548399D01* X130327484Y-83643336D01* X130364527Y-83732765D01* X130418304Y-83813249D01* X130486751Y-83881696D01* X130567235Y-83935473D01* X130656664Y-83972516D01* X130751601Y-83991400D01* X130848399Y-83991400D01* X130943336Y-83972516D01* X131032765Y-83935473D01* X131113249Y-83881696D01* X131181696Y-83813249D01* X131235473Y-83732765D01* X131272516Y-83643336D01* X131291400Y-83548399D01* X131291400Y-83451601D01* X131272516Y-83356664D01* X131268347Y-83346598D01* X134257800Y-83346598D01* X134257800Y-83453402D01* X134278637Y-83558154D01* X134319509Y-83656828D01* X134378846Y-83745632D01* X134454368Y-83821154D01* X134543172Y-83880491D01* X134641846Y-83921363D01* X134746598Y-83942200D01* X134853402Y-83942200D01* X134958154Y-83921363D01* X135015321Y-83897684D01* X134978637Y-83986246D01* X134957800Y-84090998D01* X134957800Y-84197802D01* X134978637Y-84302554D01* X135019509Y-84401228D01* X135078846Y-84490032D01* X135088814Y-84500000D01* X135078846Y-84509968D01* X135019509Y-84598772D01* X134978637Y-84697446D01* X134957800Y-84802198D01* X134957800Y-84909002D01* X134978637Y-85013754D01* X135019509Y-85112428D01* X135078846Y-85201232D01* X135154368Y-85276754D01* X135243172Y-85336091D01* X135341846Y-85376963D01* X135446598Y-85397800D01* X135553402Y-85397800D01* X135658154Y-85376963D01* X135756828Y-85336091D01* X135845632Y-85276754D01* X135921154Y-85201232D01* X135980491Y-85112428D01* X136021363Y-85013754D01* X136042200Y-84909002D01* X136042200Y-84802198D01* X136021363Y-84697446D01* X135980491Y-84598772D01* X135921154Y-84509968D01* X135911186Y-84500000D01* X135921154Y-84490032D01* X135980491Y-84401228D01* X136021363Y-84302554D01* X136032513Y-84246500D01* X138556800Y-84246500D01* X138556800Y-84353500D01* X138577675Y-84458446D01* X138618623Y-84557302D01* X138678069Y-84646270D01* X138753730Y-84721931D01* X138842698Y-84781377D01* X138941554Y-84822325D01* X139046500Y-84843200D01* X139153500Y-84843200D01* X139258446Y-84822325D01* X139357302Y-84781377D01* X139446270Y-84721931D01* X139521931Y-84646270D01* X139581377Y-84557302D01* X139622325Y-84458446D01* X139643200Y-84353500D01* X139643200Y-84246500D01* X139622325Y-84141554D01* X139581377Y-84042698D01* X139521931Y-83953730D01* X139446270Y-83878069D01* X139357302Y-83818623D01* X139258446Y-83777675D01* X139153500Y-83756800D01* X139046500Y-83756800D01* X138941554Y-83777675D01* X138842698Y-83818623D01* X138753730Y-83878069D01* X138678069Y-83953730D01* X138618623Y-84042698D01* X138577675Y-84141554D01* X138556800Y-84246500D01* X136032513Y-84246500D01* X136042200Y-84197802D01* X136042200Y-84090998D01* X136021363Y-83986246D01* X135980491Y-83887572D01* X135921154Y-83798768D01* X135845632Y-83723246D01* X135756828Y-83663909D01* X135658154Y-83623037D01* X135553402Y-83602200D01* X135446598Y-83602200D01* X135341846Y-83623037D01* X135284679Y-83646716D01* X135321363Y-83558154D01* X135342200Y-83453402D01* X135342200Y-83346598D01* X135321363Y-83241846D01* X135280491Y-83143172D01* X135221154Y-83054368D01* X135145632Y-82978846D01* X135056828Y-82919509D01* X134958154Y-82878637D01* X134853402Y-82857800D01* X134746598Y-82857800D01* X134641846Y-82878637D01* X134543172Y-82919509D01* X134454368Y-82978846D01* X134378846Y-83054368D01* X134319509Y-83143172D01* X134278637Y-83241846D01* X134257800Y-83346598D01* X131268347Y-83346598D01* X131235473Y-83267235D01* X131181696Y-83186751D01* X131113249Y-83118304D01* X131032765Y-83064527D01* X130943336Y-83027484D01* X130848399Y-83008600D01* X130751601Y-83008600D01* X130656664Y-83027484D01* X130567235Y-83064527D01* X130486751Y-83118304D01* X130418304Y-83186751D01* X130364527Y-83267235D01* X130327484Y-83356664D01* X130308600Y-83451601D01* X127991418Y-83451601D01* X127972534Y-83356664D01* X127935491Y-83267235D01* X127881714Y-83186751D01* X127813267Y-83118304D01* X127732783Y-83064527D01* X127643354Y-83027484D01* X127548417Y-83008600D01* X127451619Y-83008600D01* X127356682Y-83027484D01* X127267253Y-83064527D01* X127186769Y-83118304D01* X127118322Y-83186751D01* X127064545Y-83267235D01* X127027502Y-83356664D01* X127008618Y-83451601D01* X126991400Y-83451601D01* X126972516Y-83356664D01* X126935473Y-83267235D01* X126881696Y-83186751D01* X126813249Y-83118304D01* X126732765Y-83064527D01* X126643336Y-83027484D01* X126548399Y-83008600D01* X126451601Y-83008600D01* X126356664Y-83027484D01* X126267235Y-83064527D01* X126186751Y-83118304D01* X126118304Y-83186751D01* X126064527Y-83267235D01* X126027484Y-83356664D01* X126008600Y-83451601D01* X125991400Y-83451601D01* X125972516Y-83356664D01* X125935473Y-83267235D01* X125881696Y-83186751D01* X125813249Y-83118304D01* X125732765Y-83064527D01* X125643336Y-83027484D01* X125548399Y-83008600D01* X125451601Y-83008600D01* X125356664Y-83027484D01* X125267235Y-83064527D01* X125186751Y-83118304D01* X125118304Y-83186751D01* X125064527Y-83267235D01* X125027484Y-83356664D01* X125008600Y-83451601D01* X124991400Y-83451601D01* X124972516Y-83356664D01* X124935473Y-83267235D01* X124881696Y-83186751D01* X124813249Y-83118304D01* X124732765Y-83064527D01* X124643336Y-83027484D01* X124548399Y-83008600D01* X124451601Y-83008600D01* X124356664Y-83027484D01* X124267235Y-83064527D01* X124186751Y-83118304D01* X124118304Y-83186751D01* X124064527Y-83267235D01* X124027484Y-83356664D01* X124008600Y-83451601D01* X123991400Y-83451601D01* X123972516Y-83356664D01* X123935473Y-83267235D01* X123881696Y-83186751D01* X123813249Y-83118304D01* X123732765Y-83064527D01* X123643336Y-83027484D01* X123548399Y-83008600D01* X123451601Y-83008600D01* X123356664Y-83027484D01* X123267235Y-83064527D01* X123186751Y-83118304D01* X123118304Y-83186751D01* X123064527Y-83267235D01* X123027484Y-83356664D01* X123008600Y-83451601D01* X122991400Y-83451601D01* X122972516Y-83356664D01* X122935473Y-83267235D01* X122881696Y-83186751D01* X122813249Y-83118304D01* X122732765Y-83064527D01* X122643336Y-83027484D01* X122548399Y-83008600D01* X122451601Y-83008600D01* X122356664Y-83027484D01* X122267235Y-83064527D01* X122186751Y-83118304D01* X122118304Y-83186751D01* X122064527Y-83267235D01* X122027484Y-83356664D01* X122008600Y-83451601D01* X121991400Y-83451601D01* X121972516Y-83356664D01* X121935473Y-83267235D01* X121881696Y-83186751D01* X121813249Y-83118304D01* X121732765Y-83064527D01* X121643336Y-83027484D01* X121548399Y-83008600D01* X121451601Y-83008600D01* X121356664Y-83027484D01* X121267235Y-83064527D01* X121186751Y-83118304D01* X121118304Y-83186751D01* X121064527Y-83267235D01* X121027484Y-83356664D01* X121008600Y-83451601D01* X117991400Y-83451601D01* X117972516Y-83356664D01* X117935473Y-83267235D01* X117881696Y-83186751D01* X117813249Y-83118304D01* X117732765Y-83064527D01* X117643336Y-83027484D01* X117548399Y-83008600D01* X117451601Y-83008600D01* X117356664Y-83027484D01* X117267235Y-83064527D01* X117186751Y-83118304D01* X117118304Y-83186751D01* X117064527Y-83267235D01* X117027484Y-83356664D01* X117008600Y-83451601D01* X114991400Y-83451601D01* X114972516Y-83356664D01* X114935473Y-83267235D01* X114881696Y-83186751D01* X114813249Y-83118304D01* X114732765Y-83064527D01* X114643336Y-83027484D01* X114548399Y-83008600D01* X114451601Y-83008600D01* X114356664Y-83027484D01* X114267235Y-83064527D01* X114186751Y-83118304D01* X114118304Y-83186751D01* X114064527Y-83267235D01* X114027484Y-83356664D01* X114008600Y-83451601D01* X111991400Y-83451601D01* X111972516Y-83356664D01* X111935473Y-83267235D01* X111881696Y-83186751D01* X111813249Y-83118304D01* X111732765Y-83064527D01* X111643336Y-83027484D01* X111548399Y-83008600D01* X111451601Y-83008600D01* X111356664Y-83027484D01* X111267235Y-83064527D01* X111186751Y-83118304D01* X111118304Y-83186751D01* X111064527Y-83267235D01* X111027484Y-83356664D01* X111008600Y-83451601D01* X110085000Y-83451601D01* X110085000Y-82451601D01* X112008600Y-82451601D01* X112008600Y-82548399D01* X112027484Y-82643336D01* X112064527Y-82732765D01* X112118304Y-82813249D01* X112186751Y-82881696D01* X112267235Y-82935473D01* X112356664Y-82972516D01* X112451601Y-82991400D01* X112548399Y-82991400D01* X112643336Y-82972516D01* X112732765Y-82935473D01* X112813249Y-82881696D01* X112881696Y-82813249D01* X112935473Y-82732765D01* X112972516Y-82643336D01* X112991400Y-82548399D01* X112991400Y-82451601D01* X117008600Y-82451601D01* X117008600Y-82548399D01* X117027484Y-82643336D01* X117064527Y-82732765D01* X117118304Y-82813249D01* X117186751Y-82881696D01* X117267235Y-82935473D01* X117356664Y-82972516D01* X117451601Y-82991400D01* X117548399Y-82991400D01* X117643336Y-82972516D01* X117732765Y-82935473D01* X117813249Y-82881696D01* X117881696Y-82813249D01* X117935473Y-82732765D01* X117972516Y-82643336D01* X117991400Y-82548399D01* X117991400Y-82451601D01* X119008600Y-82451601D01* X119008600Y-82548399D01* X119027484Y-82643336D01* X119064527Y-82732765D01* X119118304Y-82813249D01* X119186751Y-82881696D01* X119267235Y-82935473D01* X119356664Y-82972516D01* X119451601Y-82991400D01* X119548399Y-82991400D01* X119643336Y-82972516D01* X119732765Y-82935473D01* X119813249Y-82881696D01* X119881696Y-82813249D01* X119935473Y-82732765D01* X119972516Y-82643336D01* X119991400Y-82548399D01* X119991400Y-82451601D01* X121008600Y-82451601D01* X121008600Y-82548399D01* X121027484Y-82643336D01* X121064527Y-82732765D01* X121118304Y-82813249D01* X121186751Y-82881696D01* X121267235Y-82935473D01* X121356664Y-82972516D01* X121451601Y-82991400D01* X121548399Y-82991400D01* X121643336Y-82972516D01* X121732765Y-82935473D01* X121813249Y-82881696D01* X121881696Y-82813249D01* X121935473Y-82732765D01* X121972516Y-82643336D01* X121991400Y-82548399D01* X121991400Y-82451601D01* X123008600Y-82451601D01* X123008600Y-82548399D01* X123027484Y-82643336D01* X123064527Y-82732765D01* X123118304Y-82813249D01* X123186751Y-82881696D01* X123267235Y-82935473D01* X123356664Y-82972516D01* X123451601Y-82991400D01* X123548399Y-82991400D01* X123643336Y-82972516D01* X123732765Y-82935473D01* X123813249Y-82881696D01* X123881696Y-82813249D01* X123935473Y-82732765D01* X123972516Y-82643336D01* X123991400Y-82548399D01* X123991400Y-82451631D01* X124008600Y-82451631D01* X124008600Y-82548429D01* X124027484Y-82643366D01* X124064527Y-82732795D01* X124118304Y-82813279D01* X124186751Y-82881726D01* X124267235Y-82935503D01* X124356664Y-82972546D01* X124451601Y-82991430D01* X124548399Y-82991430D01* X124643336Y-82972546D01* X124732765Y-82935503D01* X124813249Y-82881726D01* X124881696Y-82813279D01* X124935473Y-82732795D01* X124972516Y-82643366D01* X124991400Y-82548429D01* X124991400Y-82451631D01* X124991395Y-82451601D01* X125008600Y-82451601D01* X125008600Y-82548399D01* X125027484Y-82643336D01* X125064527Y-82732765D01* X125118304Y-82813249D01* X125186751Y-82881696D01* X125267235Y-82935473D01* X125356664Y-82972516D01* X125451601Y-82991400D01* X125548399Y-82991400D01* X125643336Y-82972516D01* X125732765Y-82935473D01* X125813249Y-82881696D01* X125881696Y-82813249D01* X125935473Y-82732765D01* X125972516Y-82643336D01* X125991400Y-82548399D01* X125991400Y-82451601D01* X125972516Y-82356664D01* X125968306Y-82346500D01* X143306800Y-82346500D01* X143306800Y-82453500D01* X143327675Y-82558446D01* X143368623Y-82657302D01* X143428069Y-82746270D01* X143503730Y-82821931D01* X143592698Y-82881377D01* X143691554Y-82922325D01* X143796500Y-82943200D01* X143903500Y-82943200D01* X144008446Y-82922325D01* X144107302Y-82881377D01* X144196270Y-82821931D01* X144271931Y-82746270D01* X144331377Y-82657302D01* X144372325Y-82558446D01* X144393200Y-82453500D01* X144393200Y-82346500D01* X144372325Y-82241554D01* X144331377Y-82142698D01* X144271931Y-82053730D01* X144196270Y-81978069D01* X144107302Y-81918623D01* X144008446Y-81877675D01* X143903500Y-81856800D01* X143796500Y-81856800D01* X143691554Y-81877675D01* X143592698Y-81918623D01* X143503730Y-81978069D01* X143428069Y-82053730D01* X143368623Y-82142698D01* X143327675Y-82241554D01* X143306800Y-82346500D01* X125968306Y-82346500D01* X125935473Y-82267235D01* X125881696Y-82186751D01* X125813249Y-82118304D01* X125732765Y-82064527D01* X125643336Y-82027484D01* X125548399Y-82008600D01* X125451601Y-82008600D01* X125356664Y-82027484D01* X125267235Y-82064527D01* X125186751Y-82118304D01* X125118304Y-82186751D01* X125064527Y-82267235D01* X125027484Y-82356664D01* X125008600Y-82451601D01* X124991395Y-82451601D01* X124972516Y-82356694D01* X124935473Y-82267265D01* X124881696Y-82186781D01* X124813249Y-82118334D01* X124732765Y-82064557D01* X124643336Y-82027514D01* X124548399Y-82008630D01* X124451601Y-82008630D01* X124356664Y-82027514D01* X124267235Y-82064557D01* X124186751Y-82118334D01* X124118304Y-82186781D01* X124064527Y-82267265D01* X124027484Y-82356694D01* X124008600Y-82451631D01* X123991400Y-82451631D01* X123991400Y-82451601D01* X123972516Y-82356664D01* X123935473Y-82267235D01* X123881696Y-82186751D01* X123813249Y-82118304D01* X123732765Y-82064527D01* X123643336Y-82027484D01* X123548399Y-82008600D01* X123451601Y-82008600D01* X123356664Y-82027484D01* X123267235Y-82064527D01* X123186751Y-82118304D01* X123118304Y-82186751D01* X123064527Y-82267235D01* X123027484Y-82356664D01* X123008600Y-82451601D01* X121991400Y-82451601D01* X121972516Y-82356664D01* X121935473Y-82267235D01* X121881696Y-82186751D01* X121813249Y-82118304D01* X121732765Y-82064527D01* X121643336Y-82027484D01* X121548399Y-82008600D01* X121451601Y-82008600D01* X121356664Y-82027484D01* X121267235Y-82064527D01* X121186751Y-82118304D01* X121118304Y-82186751D01* X121064527Y-82267235D01* X121027484Y-82356664D01* X121008600Y-82451601D01* X119991400Y-82451601D01* X119972516Y-82356664D01* X119935473Y-82267235D01* X119881696Y-82186751D01* X119813249Y-82118304D01* X119732765Y-82064527D01* X119643336Y-82027484D01* X119548399Y-82008600D01* X119451601Y-82008600D01* X119356664Y-82027484D01* X119267235Y-82064527D01* X119186751Y-82118304D01* X119118304Y-82186751D01* X119064527Y-82267235D01* X119027484Y-82356664D01* X119008600Y-82451601D01* X117991400Y-82451601D01* X117972516Y-82356664D01* X117935473Y-82267235D01* X117881696Y-82186751D01* X117813249Y-82118304D01* X117732765Y-82064527D01* X117643336Y-82027484D01* X117548399Y-82008600D01* X117451601Y-82008600D01* X117356664Y-82027484D01* X117267235Y-82064527D01* X117186751Y-82118304D01* X117118304Y-82186751D01* X117064527Y-82267235D01* X117027484Y-82356664D01* X117008600Y-82451601D01* X112991400Y-82451601D01* X112972516Y-82356664D01* X112935473Y-82267235D01* X112881696Y-82186751D01* X112813249Y-82118304D01* X112732765Y-82064527D01* X112643336Y-82027484D01* X112548399Y-82008600D01* X112451601Y-82008600D01* X112356664Y-82027484D01* X112267235Y-82064527D01* X112186751Y-82118304D01* X112118304Y-82186751D01* X112064527Y-82267235D01* X112027484Y-82356664D01* X112008600Y-82451601D01* X110085000Y-82451601D01* X110085000Y-81451601D01* X112008600Y-81451601D01* X112008600Y-81548399D01* X112027484Y-81643336D01* X112064527Y-81732765D01* X112118304Y-81813249D01* X112186751Y-81881696D01* X112267235Y-81935473D01* X112356664Y-81972516D01* X112451601Y-81991400D01* X112548399Y-81991400D01* X112643336Y-81972516D01* X112732765Y-81935473D01* X112813249Y-81881696D01* X112881696Y-81813249D01* X112935473Y-81732765D01* X112972516Y-81643336D01* X112991400Y-81548399D01* X112991400Y-81451601D01* X114008600Y-81451601D01* X114008600Y-81548399D01* X114027484Y-81643336D01* X114064527Y-81732765D01* X114118304Y-81813249D01* X114186751Y-81881696D01* X114267235Y-81935473D01* X114356664Y-81972516D01* X114451601Y-81991400D01* X114548399Y-81991400D01* X114643336Y-81972516D01* X114732765Y-81935473D01* X114813249Y-81881696D01* X114881696Y-81813249D01* X114935473Y-81732765D01* X114972516Y-81643336D01* X114991400Y-81548399D01* X114991400Y-81451601D01* X118008600Y-81451601D01* X118008600Y-81548399D01* X118027484Y-81643336D01* X118064527Y-81732765D01* X118118304Y-81813249D01* X118186751Y-81881696D01* X118267235Y-81935473D01* X118356664Y-81972516D01* X118451601Y-81991400D01* X118548399Y-81991400D01* X118643336Y-81972516D01* X118732765Y-81935473D01* X118813249Y-81881696D01* X118881696Y-81813249D01* X118935473Y-81732765D01* X118972516Y-81643336D01* X118991400Y-81548399D01* X118991400Y-81451601D01* X119008600Y-81451601D01* X119008600Y-81548399D01* X119027484Y-81643336D01* X119064527Y-81732765D01* X119118304Y-81813249D01* X119186751Y-81881696D01* X119267235Y-81935473D01* X119356664Y-81972516D01* X119451601Y-81991400D01* X119548399Y-81991400D01* X119643336Y-81972516D01* X119732765Y-81935473D01* X119813249Y-81881696D01* X119881696Y-81813249D01* X119935473Y-81732765D01* X119972516Y-81643336D01* X119991400Y-81548399D01* X119991400Y-81451601D01* X123008600Y-81451601D01* X123008600Y-81548399D01* X123027484Y-81643336D01* X123064527Y-81732765D01* X123118304Y-81813249D01* X123186751Y-81881696D01* X123267235Y-81935473D01* X123356664Y-81972516D01* X123451601Y-81991400D01* X123548399Y-81991400D01* X123643336Y-81972516D01* X123732765Y-81935473D01* X123813249Y-81881696D01* X123881696Y-81813249D01* X123935473Y-81732765D01* X123972516Y-81643336D01* X123991400Y-81548399D01* X123991400Y-81451601D01* X124008600Y-81451601D01* X124008600Y-81548399D01* X124027484Y-81643336D01* X124064527Y-81732765D01* X124118304Y-81813249D01* X124186751Y-81881696D01* X124267235Y-81935473D01* X124356664Y-81972516D01* X124451601Y-81991400D01* X124548399Y-81991400D01* X124643336Y-81972516D01* X124732765Y-81935473D01* X124813249Y-81881696D01* X124881696Y-81813249D01* X124935473Y-81732765D01* X124972516Y-81643336D01* X124991400Y-81548399D01* X124991400Y-81451601D01* X125008600Y-81451601D01* X125008600Y-81548399D01* X125027484Y-81643336D01* X125064527Y-81732765D01* X125118304Y-81813249D01* X125186751Y-81881696D01* X125267235Y-81935473D01* X125356664Y-81972516D01* X125451601Y-81991400D01* X125548399Y-81991400D01* X125643336Y-81972516D01* X125732765Y-81935473D01* X125813249Y-81881696D01* X125881696Y-81813249D01* X125935473Y-81732765D01* X125969092Y-81651601D01* X134208600Y-81651601D01* X134208600Y-81748399D01* X134227484Y-81843336D01* X134264527Y-81932765D01* X134318304Y-82013249D01* X134386751Y-82081696D01* X134467235Y-82135473D01* X134556664Y-82172516D01* X134651601Y-82191400D01* X134748399Y-82191400D01* X134843336Y-82172516D01* X134932765Y-82135473D01* X135013249Y-82081696D01* X135081696Y-82013249D01* X135135473Y-81932765D01* X135150000Y-81897694D01* X135164527Y-81932765D01* X135218304Y-82013249D01* X135286751Y-82081696D01* X135367235Y-82135473D01* X135456664Y-82172516D01* X135551601Y-82191400D01* X135648399Y-82191400D01* X135743336Y-82172516D01* X135832765Y-82135473D01* X135913249Y-82081696D01* X135981696Y-82013249D01* X136035473Y-81932765D01* X136072516Y-81843336D01* X136091400Y-81748399D01* X136091400Y-81651601D01* X136072516Y-81556664D01* X136035473Y-81467235D01* X135981696Y-81386751D01* X135913249Y-81318304D01* X135832765Y-81264527D01* X135743336Y-81227484D01* X135648399Y-81208600D01* X135551601Y-81208600D01* X135456664Y-81227484D01* X135367235Y-81264527D01* X135286751Y-81318304D01* X135218304Y-81386751D01* X135164527Y-81467235D01* X135150000Y-81502306D01* X135135473Y-81467235D01* X135081696Y-81386751D01* X135013249Y-81318304D01* X134932765Y-81264527D01* X134843336Y-81227484D01* X134748399Y-81208600D01* X134651601Y-81208600D01* X134556664Y-81227484D01* X134467235Y-81264527D01* X134386751Y-81318304D01* X134318304Y-81386751D01* X134264527Y-81467235D01* X134227484Y-81556664D01* X134208600Y-81651601D01* X125969092Y-81651601D01* X125972516Y-81643336D01* X125991400Y-81548399D01* X125991400Y-81451601D01* X125972516Y-81356664D01* X125935473Y-81267235D01* X125881696Y-81186751D01* X125813249Y-81118304D01* X125780617Y-81096500D01* X137906800Y-81096500D01* X137906800Y-81203500D01* X137927675Y-81308446D01* X137968623Y-81407302D01* X138028069Y-81496270D01* X138103730Y-81571931D01* X138192698Y-81631377D01* X138291554Y-81672325D01* X138396500Y-81693200D01* X138503500Y-81693200D01* X138608446Y-81672325D01* X138707302Y-81631377D01* X138796270Y-81571931D01* X138871931Y-81496270D01* X138931377Y-81407302D01* X138962478Y-81332218D01* X141311800Y-81332218D01* X141311800Y-81467782D01* X141338247Y-81600741D01* X141390125Y-81725985D01* X141465440Y-81838702D01* X141561298Y-81934560D01* X141674015Y-82009875D01* X141799259Y-82061753D01* X141932218Y-82088200D01* X142067782Y-82088200D01* X142200741Y-82061753D01* X142325985Y-82009875D01* X142438702Y-81934560D01* X142534560Y-81838702D01* X142609875Y-81725985D01* X142661753Y-81600741D01* X142688200Y-81467782D01* X142688200Y-81332218D01* X142661753Y-81199259D01* X142609875Y-81074015D01* X142534560Y-80961298D01* X142438702Y-80865440D01* X142325985Y-80790125D01* X142200741Y-80738247D01* X142067782Y-80711800D01* X141932218Y-80711800D01* X141799259Y-80738247D01* X141674015Y-80790125D01* X141561298Y-80865440D01* X141465440Y-80961298D01* X141390125Y-81074015D01* X141338247Y-81199259D01* X141311800Y-81332218D01* X138962478Y-81332218D01* X138972325Y-81308446D01* X138993200Y-81203500D01* X138993200Y-81096500D01* X138972325Y-80991554D01* X138931377Y-80892698D01* X138871931Y-80803730D01* X138796270Y-80728069D01* X138707302Y-80668623D01* X138608446Y-80627675D01* X138503500Y-80606800D01* X138396500Y-80606800D01* X138291554Y-80627675D01* X138192698Y-80668623D01* X138103730Y-80728069D01* X138028069Y-80803730D01* X137968623Y-80892698D01* X137927675Y-80991554D01* X137906800Y-81096500D01* X125780617Y-81096500D01* X125732765Y-81064527D01* X125643336Y-81027484D01* X125548399Y-81008600D01* X125451601Y-81008600D01* X125356664Y-81027484D01* X125267235Y-81064527D01* X125186751Y-81118304D01* X125118304Y-81186751D01* X125064527Y-81267235D01* X125027484Y-81356664D01* X125008600Y-81451601D01* X124991400Y-81451601D01* X124972516Y-81356664D01* X124935473Y-81267235D01* X124881696Y-81186751D01* X124813249Y-81118304D01* X124732765Y-81064527D01* X124643336Y-81027484D01* X124548399Y-81008600D01* X124451601Y-81008600D01* X124356664Y-81027484D01* X124267235Y-81064527D01* X124186751Y-81118304D01* X124118304Y-81186751D01* X124064527Y-81267235D01* X124027484Y-81356664D01* X124008600Y-81451601D01* X123991400Y-81451601D01* X123972516Y-81356664D01* X123935473Y-81267235D01* X123881696Y-81186751D01* X123813249Y-81118304D01* X123732765Y-81064527D01* X123643336Y-81027484D01* X123548399Y-81008600D01* X123451601Y-81008600D01* X123356664Y-81027484D01* X123267235Y-81064527D01* X123186751Y-81118304D01* X123118304Y-81186751D01* X123064527Y-81267235D01* X123027484Y-81356664D01* X123008600Y-81451601D01* X119991400Y-81451601D01* X119972516Y-81356664D01* X119935473Y-81267235D01* X119881696Y-81186751D01* X119813249Y-81118304D01* X119732765Y-81064527D01* X119643336Y-81027484D01* X119548399Y-81008600D01* X119451601Y-81008600D01* X119356664Y-81027484D01* X119267235Y-81064527D01* X119186751Y-81118304D01* X119118304Y-81186751D01* X119064527Y-81267235D01* X119027484Y-81356664D01* X119008600Y-81451601D01* X118991400Y-81451601D01* X118972516Y-81356664D01* X118935473Y-81267235D01* X118881696Y-81186751D01* X118813249Y-81118304D01* X118732765Y-81064527D01* X118643336Y-81027484D01* X118548399Y-81008600D01* X118451601Y-81008600D01* X118356664Y-81027484D01* X118267235Y-81064527D01* X118186751Y-81118304D01* X118118304Y-81186751D01* X118064527Y-81267235D01* X118027484Y-81356664D01* X118008600Y-81451601D01* X114991400Y-81451601D01* X114972516Y-81356664D01* X114935473Y-81267235D01* X114881696Y-81186751D01* X114813249Y-81118304D01* X114732765Y-81064527D01* X114643336Y-81027484D01* X114548399Y-81008600D01* X114451601Y-81008600D01* X114356664Y-81027484D01* X114267235Y-81064527D01* X114186751Y-81118304D01* X114118304Y-81186751D01* X114064527Y-81267235D01* X114027484Y-81356664D01* X114008600Y-81451601D01* X112991400Y-81451601D01* X112972516Y-81356664D01* X112935473Y-81267235D01* X112881696Y-81186751D01* X112813249Y-81118304D01* X112732765Y-81064527D01* X112643336Y-81027484D01* X112548399Y-81008600D01* X112451601Y-81008600D01* X112356664Y-81027484D01* X112267235Y-81064527D01* X112186751Y-81118304D01* X112118304Y-81186751D01* X112064527Y-81267235D01* X112027484Y-81356664D01* X112008600Y-81451601D01* X110085000Y-81451601D01* X110085000Y-80763405D01* X110118304Y-80813249D01* X110186751Y-80881696D01* X110267235Y-80935473D01* X110356664Y-80972516D01* X110451601Y-80991400D01* X110548399Y-80991400D01* X110643336Y-80972516D01* X110732765Y-80935473D01* X110813249Y-80881696D01* X110881696Y-80813249D01* X110935473Y-80732765D01* X110972516Y-80643336D01* X110991400Y-80548399D01* X110991400Y-80451601D01* X115008600Y-80451601D01* X115008600Y-80548399D01* X115027484Y-80643336D01* X115064527Y-80732765D01* X115118304Y-80813249D01* X115186751Y-80881696D01* X115267235Y-80935473D01* X115356664Y-80972516D01* X115451601Y-80991400D01* X115548399Y-80991400D01* X115643336Y-80972516D01* X115732765Y-80935473D01* X115813249Y-80881696D01* X115881696Y-80813249D01* X115935473Y-80732765D01* X115972516Y-80643336D01* X115991400Y-80548399D01* X115991400Y-80451601D01* X117008600Y-80451601D01* X117008600Y-80548399D01* X117027484Y-80643336D01* X117064527Y-80732765D01* X117118304Y-80813249D01* X117186751Y-80881696D01* X117267235Y-80935473D01* X117356664Y-80972516D01* X117451601Y-80991400D01* X117548399Y-80991400D01* X117643336Y-80972516D01* X117732765Y-80935473D01* X117813249Y-80881696D01* X117881696Y-80813249D01* X117935473Y-80732765D01* X117972516Y-80643336D01* X117991400Y-80548399D01* X117991400Y-80451601D01* X118008600Y-80451601D01* X118008600Y-80548399D01* X118027484Y-80643336D01* X118064527Y-80732765D01* X118118304Y-80813249D01* X118186751Y-80881696D01* X118267235Y-80935473D01* X118356664Y-80972516D01* X118451601Y-80991400D01* X118548399Y-80991400D01* X118643336Y-80972516D01* X118732765Y-80935473D01* X118813249Y-80881696D01* X118881696Y-80813249D01* X118935473Y-80732765D01* X118972516Y-80643336D01* X118991400Y-80548399D01* X118991400Y-80451601D01* X119008600Y-80451601D01* X119008600Y-80548399D01* X119027484Y-80643336D01* X119064527Y-80732765D01* X119118304Y-80813249D01* X119186751Y-80881696D01* X119267235Y-80935473D01* X119356664Y-80972516D01* X119451601Y-80991400D01* X119548399Y-80991400D01* X119643336Y-80972516D01* X119732765Y-80935473D01* X119813249Y-80881696D01* X119881696Y-80813249D01* X119935473Y-80732765D01* X119972516Y-80643336D01* X119991400Y-80548399D01* X119991400Y-80451601D01* X123008600Y-80451601D01* X123008600Y-80548399D01* X123027484Y-80643336D01* X123064527Y-80732765D01* X123118304Y-80813249D01* X123186751Y-80881696D01* X123267235Y-80935473D01* X123356664Y-80972516D01* X123451601Y-80991400D01* X123548399Y-80991400D01* X123643336Y-80972516D01* X123732765Y-80935473D01* X123813249Y-80881696D01* X123881696Y-80813249D01* X123935473Y-80732765D01* X123972516Y-80643336D01* X123991400Y-80548399D01* X123991400Y-80451601D01* X124008600Y-80451601D01* X124008600Y-80548399D01* X124027484Y-80643336D01* X124064527Y-80732765D01* X124118304Y-80813249D01* X124186751Y-80881696D01* X124267235Y-80935473D01* X124356664Y-80972516D01* X124451601Y-80991400D01* X124548399Y-80991400D01* X124643336Y-80972516D01* X124732765Y-80935473D01* X124813249Y-80881696D01* X124881696Y-80813249D01* X124935473Y-80732765D01* X124972516Y-80643336D01* X124991400Y-80548399D01* X124991400Y-80451601D01* X125008600Y-80451601D01* X125008600Y-80548399D01* X125027484Y-80643336D01* X125064527Y-80732765D01* X125118304Y-80813249D01* X125186751Y-80881696D01* X125267235Y-80935473D01* X125356664Y-80972516D01* X125451601Y-80991400D01* X125548399Y-80991400D01* X125643336Y-80972516D01* X125732765Y-80935473D01* X125813249Y-80881696D01* X125881696Y-80813249D01* X125935473Y-80732765D01* X125972516Y-80643336D01* X125991400Y-80548399D01* X125991400Y-80451601D01* X125972516Y-80356664D01* X125935473Y-80267235D01* X125881696Y-80186751D01* X125846546Y-80151601D01* X134208600Y-80151601D01* X134208600Y-80248399D01* X134227484Y-80343336D01* X134264527Y-80432765D01* X134318304Y-80513249D01* X134386751Y-80581696D01* X134467235Y-80635473D01* X134556664Y-80672516D01* X134651601Y-80691400D01* X134748399Y-80691400D01* X134843336Y-80672516D01* X134932765Y-80635473D01* X135013249Y-80581696D01* X135081696Y-80513249D01* X135135473Y-80432765D01* X135150000Y-80397694D01* X135164527Y-80432765D01* X135218304Y-80513249D01* X135286751Y-80581696D01* X135367235Y-80635473D01* X135456664Y-80672516D01* X135551601Y-80691400D01* X135648399Y-80691400D01* X135743336Y-80672516D01* X135832765Y-80635473D01* X135913249Y-80581696D01* X135981696Y-80513249D01* X136035473Y-80432765D01* X136072516Y-80343336D01* X136091400Y-80248399D01* X136091400Y-80151601D01* X136072516Y-80056664D01* X136035473Y-79967235D01* X135981696Y-79886751D01* X135913249Y-79818304D01* X135832765Y-79764527D01* X135743336Y-79727484D01* X135648399Y-79708600D01* X135551601Y-79708600D01* X135456664Y-79727484D01* X135367235Y-79764527D01* X135286751Y-79818304D01* X135218304Y-79886751D01* X135164527Y-79967235D01* X135150000Y-80002306D01* X135135473Y-79967235D01* X135081696Y-79886751D01* X135013249Y-79818304D01* X134932765Y-79764527D01* X134843336Y-79727484D01* X134748399Y-79708600D01* X134651601Y-79708600D01* X134556664Y-79727484D01* X134467235Y-79764527D01* X134386751Y-79818304D01* X134318304Y-79886751D01* X134264527Y-79967235D01* X134227484Y-80056664D01* X134208600Y-80151601D01* X125846546Y-80151601D01* X125813249Y-80118304D01* X125732765Y-80064527D01* X125643336Y-80027484D01* X125548399Y-80008600D01* X125451601Y-80008600D01* X125356664Y-80027484D01* X125267235Y-80064527D01* X125186751Y-80118304D01* X125118304Y-80186751D01* X125064527Y-80267235D01* X125027484Y-80356664D01* X125008600Y-80451601D01* X124991400Y-80451601D01* X124972516Y-80356664D01* X124935473Y-80267235D01* X124881696Y-80186751D01* X124813249Y-80118304D01* X124732765Y-80064527D01* X124643336Y-80027484D01* X124548399Y-80008600D01* X124451601Y-80008600D01* X124356664Y-80027484D01* X124267235Y-80064527D01* X124186751Y-80118304D01* X124118304Y-80186751D01* X124064527Y-80267235D01* X124027484Y-80356664D01* X124008600Y-80451601D01* X123991400Y-80451601D01* X123972516Y-80356664D01* X123935473Y-80267235D01* X123881696Y-80186751D01* X123813249Y-80118304D01* X123732765Y-80064527D01* X123643336Y-80027484D01* X123548399Y-80008600D01* X123451601Y-80008600D01* X123356664Y-80027484D01* X123267235Y-80064527D01* X123186751Y-80118304D01* X123118304Y-80186751D01* X123064527Y-80267235D01* X123027484Y-80356664D01* X123008600Y-80451601D01* X119991400Y-80451601D01* X119972516Y-80356664D01* X119935473Y-80267235D01* X119881696Y-80186751D01* X119813249Y-80118304D01* X119732765Y-80064527D01* X119643336Y-80027484D01* X119548399Y-80008600D01* X119451601Y-80008600D01* X119356664Y-80027484D01* X119267235Y-80064527D01* X119186751Y-80118304D01* X119118304Y-80186751D01* X119064527Y-80267235D01* X119027484Y-80356664D01* X119008600Y-80451601D01* X118991400Y-80451601D01* X118972516Y-80356664D01* X118935473Y-80267235D01* X118881696Y-80186751D01* X118813249Y-80118304D01* X118732765Y-80064527D01* X118643336Y-80027484D01* X118548399Y-80008600D01* X118451601Y-80008600D01* X118356664Y-80027484D01* X118267235Y-80064527D01* X118186751Y-80118304D01* X118118304Y-80186751D01* X118064527Y-80267235D01* X118027484Y-80356664D01* X118008600Y-80451601D01* X117991400Y-80451601D01* X117972516Y-80356664D01* X117935473Y-80267235D01* X117881696Y-80186751D01* X117813249Y-80118304D01* X117732765Y-80064527D01* X117643336Y-80027484D01* X117548399Y-80008600D01* X117451601Y-80008600D01* X117356664Y-80027484D01* X117267235Y-80064527D01* X117186751Y-80118304D01* X117118304Y-80186751D01* X117064527Y-80267235D01* X117027484Y-80356664D01* X117008600Y-80451601D01* X115991400Y-80451601D01* X115972516Y-80356664D01* X115935473Y-80267235D01* X115881696Y-80186751D01* X115813249Y-80118304D01* X115732765Y-80064527D01* X115643336Y-80027484D01* X115548399Y-80008600D01* X115451601Y-80008600D01* X115356664Y-80027484D01* X115267235Y-80064527D01* X115186751Y-80118304D01* X115118304Y-80186751D01* X115064527Y-80267235D01* X115027484Y-80356664D01* X115008600Y-80451601D01* X110991400Y-80451601D01* X110972516Y-80356664D01* X110935473Y-80267235D01* X110881696Y-80186751D01* X110813249Y-80118304D01* X110732765Y-80064527D01* X110643336Y-80027484D01* X110548399Y-80008600D01* X110451601Y-80008600D01* X110356664Y-80027484D01* X110267235Y-80064527D01* X110186751Y-80118304D01* X110118304Y-80186751D01* X110085000Y-80236595D01* X110085000Y-79451601D01* X116008600Y-79451601D01* X116008600Y-79548399D01* X116027484Y-79643336D01* X116064527Y-79732765D01* X116118304Y-79813249D01* X116186751Y-79881696D01* X116267235Y-79935473D01* X116356664Y-79972516D01* X116451601Y-79991400D01* X116548399Y-79991400D01* X116643336Y-79972516D01* X116732765Y-79935473D01* X116813249Y-79881696D01* X116881696Y-79813249D01* X116935473Y-79732765D01* X116972516Y-79643336D01* X116991400Y-79548399D01* X116991400Y-79451601D01* X117008600Y-79451601D01* X117008600Y-79548399D01* X117027484Y-79643336D01* X117064527Y-79732765D01* X117118304Y-79813249D01* X117186751Y-79881696D01* X117267235Y-79935473D01* X117356664Y-79972516D01* X117451601Y-79991400D01* X117548399Y-79991400D01* X117643336Y-79972516D01* X117732765Y-79935473D01* X117813249Y-79881696D01* X117881696Y-79813249D01* X117935473Y-79732765D01* X117972516Y-79643336D01* X117991400Y-79548399D01* X117991400Y-79451601D01* X118008600Y-79451601D01* X118008600Y-79548399D01* X118027484Y-79643336D01* X118064527Y-79732765D01* X118118304Y-79813249D01* X118186751Y-79881696D01* X118267235Y-79935473D01* X118356664Y-79972516D01* X118451601Y-79991400D01* X118548399Y-79991400D01* X118643336Y-79972516D01* X118732765Y-79935473D01* X118813249Y-79881696D01* X118881696Y-79813249D01* X118935473Y-79732765D01* X118972516Y-79643336D01* X118991400Y-79548399D01* X118991400Y-79451601D01* X119008600Y-79451601D01* X119008600Y-79548399D01* X119027484Y-79643336D01* X119064527Y-79732765D01* X119118304Y-79813249D01* X119186751Y-79881696D01* X119267235Y-79935473D01* X119356664Y-79972516D01* X119451601Y-79991400D01* X119548399Y-79991400D01* X119643336Y-79972516D01* X119732765Y-79935473D01* X119813249Y-79881696D01* X119881696Y-79813249D01* X119935473Y-79732765D01* X119972516Y-79643336D01* X119991400Y-79548399D01* X119991400Y-79451601D01* X120008600Y-79451601D01* X120008600Y-79548399D01* X120027484Y-79643336D01* X120064527Y-79732765D01* X120118304Y-79813249D01* X120186751Y-79881696D01* X120267235Y-79935473D01* X120356664Y-79972516D01* X120451601Y-79991400D01* X120548399Y-79991400D01* X120643336Y-79972516D01* X120732765Y-79935473D01* X120813249Y-79881696D01* X120881696Y-79813249D01* X120935473Y-79732765D01* X120972516Y-79643336D01* X120991400Y-79548399D01* X120991400Y-79451601D01* X125008600Y-79451601D01* X125008600Y-79548399D01* X125027484Y-79643336D01* X125064527Y-79732765D01* X125118304Y-79813249D01* X125186751Y-79881696D01* X125267235Y-79935473D01* X125356664Y-79972516D01* X125451601Y-79991400D01* X125548399Y-79991400D01* X125643336Y-79972516D01* X125732765Y-79935473D01* X125813249Y-79881696D01* X125881696Y-79813249D01* X125935473Y-79732765D01* X125972516Y-79643336D01* X125991400Y-79548399D01* X125991400Y-79451601D01* X126008600Y-79451601D01* X126008600Y-79548399D01* X126027484Y-79643336D01* X126064527Y-79732765D01* X126118304Y-79813249D01* X126186751Y-79881696D01* X126267235Y-79935473D01* X126356664Y-79972516D01* X126451601Y-79991400D01* X126548399Y-79991400D01* X126643336Y-79972516D01* X126732765Y-79935473D01* X126813249Y-79881696D01* X126881696Y-79813249D01* X126935473Y-79732765D01* X126972516Y-79643336D01* X126991400Y-79548399D01* X126991400Y-79451601D01* X126972516Y-79356664D01* X126935473Y-79267235D01* X126881696Y-79186751D01* X126813249Y-79118304D01* X126732765Y-79064527D01* X126643336Y-79027484D01* X126548399Y-79008600D01* X126451601Y-79008600D01* X126356664Y-79027484D01* X126267235Y-79064527D01* X126186751Y-79118304D01* X126118304Y-79186751D01* X126064527Y-79267235D01* X126027484Y-79356664D01* X126008600Y-79451601D01* X125991400Y-79451601D01* X125972516Y-79356664D01* X125935473Y-79267235D01* X125881696Y-79186751D01* X125813249Y-79118304D01* X125732765Y-79064527D01* X125643336Y-79027484D01* X125548399Y-79008600D01* X125451601Y-79008600D01* X125356664Y-79027484D01* X125267235Y-79064527D01* X125186751Y-79118304D01* X125118304Y-79186751D01* X125064527Y-79267235D01* X125027484Y-79356664D01* X125008600Y-79451601D01* X120991400Y-79451601D01* X120972516Y-79356664D01* X120935473Y-79267235D01* X120881696Y-79186751D01* X120813249Y-79118304D01* X120732765Y-79064527D01* X120643336Y-79027484D01* X120548399Y-79008600D01* X120451601Y-79008600D01* X120356664Y-79027484D01* X120267235Y-79064527D01* X120186751Y-79118304D01* X120118304Y-79186751D01* X120064527Y-79267235D01* X120027484Y-79356664D01* X120008600Y-79451601D01* X119991400Y-79451601D01* X119972516Y-79356664D01* X119935473Y-79267235D01* X119881696Y-79186751D01* X119813249Y-79118304D01* X119732765Y-79064527D01* X119643336Y-79027484D01* X119548399Y-79008600D01* X119451601Y-79008600D01* X119356664Y-79027484D01* X119267235Y-79064527D01* X119186751Y-79118304D01* X119118304Y-79186751D01* X119064527Y-79267235D01* X119027484Y-79356664D01* X119008600Y-79451601D01* X118991400Y-79451601D01* X118972516Y-79356664D01* X118935473Y-79267235D01* X118881696Y-79186751D01* X118813249Y-79118304D01* X118732765Y-79064527D01* X118643336Y-79027484D01* X118548399Y-79008600D01* X118451601Y-79008600D01* X118356664Y-79027484D01* X118267235Y-79064527D01* X118186751Y-79118304D01* X118118304Y-79186751D01* X118064527Y-79267235D01* X118027484Y-79356664D01* X118008600Y-79451601D01* X117991400Y-79451601D01* X117972516Y-79356664D01* X117935473Y-79267235D01* X117881696Y-79186751D01* X117813249Y-79118304D01* X117732765Y-79064527D01* X117643336Y-79027484D01* X117548399Y-79008600D01* X117451601Y-79008600D01* X117356664Y-79027484D01* X117267235Y-79064527D01* X117186751Y-79118304D01* X117118304Y-79186751D01* X117064527Y-79267235D01* X117027484Y-79356664D01* X117008600Y-79451601D01* X116991400Y-79451601D01* X116972516Y-79356664D01* X116935473Y-79267235D01* X116881696Y-79186751D01* X116813249Y-79118304D01* X116732765Y-79064527D01* X116643336Y-79027484D01* X116548399Y-79008600D01* X116451601Y-79008600D01* X116356664Y-79027484D01* X116267235Y-79064527D01* X116186751Y-79118304D01* X116118304Y-79186751D01* X116064527Y-79267235D01* X116027484Y-79356664D01* X116008600Y-79451601D01* X110085000Y-79451601D01* X110085000Y-78451601D01* X112008600Y-78451601D01* X112008600Y-78548399D01* X112027484Y-78643336D01* X112064527Y-78732765D01* X112118304Y-78813249D01* X112186751Y-78881696D01* X112267235Y-78935473D01* X112356664Y-78972516D01* X112451601Y-78991400D01* X112548399Y-78991400D01* X112643336Y-78972516D01* X112732765Y-78935473D01* X112813249Y-78881696D01* X112881696Y-78813249D01* X112935473Y-78732765D01* X112972516Y-78643336D01* X112991400Y-78548399D01* X112991400Y-78451601D01* X113008600Y-78451601D01* X113008600Y-78548399D01* X113027484Y-78643336D01* X113064527Y-78732765D01* X113118304Y-78813249D01* X113186751Y-78881696D01* X113267235Y-78935473D01* X113356664Y-78972516D01* X113451601Y-78991400D01* X113548399Y-78991400D01* X113643336Y-78972516D01* X113732765Y-78935473D01* X113813249Y-78881696D01* X113881696Y-78813249D01* X113935473Y-78732765D01* X113972516Y-78643336D01* X113991400Y-78548399D01* X113991400Y-78451601D01* X114008600Y-78451601D01* X114008600Y-78548399D01* X114027484Y-78643336D01* X114064527Y-78732765D01* X114118304Y-78813249D01* X114186751Y-78881696D01* X114267235Y-78935473D01* X114356664Y-78972516D01* X114451601Y-78991400D01* X114548399Y-78991400D01* X114643336Y-78972516D01* X114732765Y-78935473D01* X114813249Y-78881696D01* X114881696Y-78813249D01* X114935473Y-78732765D01* X114972516Y-78643336D01* X114991400Y-78548399D01* X114991400Y-78451601D01* X116008600Y-78451601D01* X116008600Y-78548399D01* X116027484Y-78643336D01* X116064527Y-78732765D01* X116118304Y-78813249D01* X116186751Y-78881696D01* X116267235Y-78935473D01* X116356664Y-78972516D01* X116451601Y-78991400D01* X116548399Y-78991400D01* X116643336Y-78972516D01* X116732765Y-78935473D01* X116813249Y-78881696D01* X116881696Y-78813249D01* X116935473Y-78732765D01* X116972516Y-78643336D01* X116991400Y-78548399D01* X116991400Y-78451601D01* X117008600Y-78451601D01* X117008600Y-78548399D01* X117027484Y-78643336D01* X117064527Y-78732765D01* X117118304Y-78813249D01* X117186751Y-78881696D01* X117267235Y-78935473D01* X117356664Y-78972516D01* X117451601Y-78991400D01* X117548399Y-78991400D01* X117643336Y-78972516D01* X117732765Y-78935473D01* X117813249Y-78881696D01* X117881696Y-78813249D01* X117935473Y-78732765D01* X117972516Y-78643336D01* X117991400Y-78548399D01* X117991400Y-78451601D01* X122008600Y-78451601D01* X122008600Y-78548399D01* X122027484Y-78643336D01* X122064527Y-78732765D01* X122118304Y-78813249D01* X122186751Y-78881696D01* X122267235Y-78935473D01* X122356664Y-78972516D01* X122451601Y-78991400D01* X122548399Y-78991400D01* X122643336Y-78972516D01* X122732765Y-78935473D01* X122813249Y-78881696D01* X122881696Y-78813249D01* X122935473Y-78732765D01* X122972516Y-78643336D01* X122991400Y-78548399D01* X122991400Y-78451601D01* X123008600Y-78451601D01* X123008600Y-78548399D01* X123027484Y-78643336D01* X123064527Y-78732765D01* X123118304Y-78813249D01* X123186751Y-78881696D01* X123267235Y-78935473D01* X123356664Y-78972516D01* X123451601Y-78991400D01* X123548399Y-78991400D01* X123643336Y-78972516D01* X123732765Y-78935473D01* X123813249Y-78881696D01* X123881696Y-78813249D01* X123935473Y-78732765D01* X123972516Y-78643336D01* X123991400Y-78548399D01* X123991400Y-78451601D01* X124008600Y-78451601D01* X124008600Y-78548399D01* X124027484Y-78643336D01* X124064527Y-78732765D01* X124118304Y-78813249D01* X124186751Y-78881696D01* X124267235Y-78935473D01* X124356664Y-78972516D01* X124451601Y-78991400D01* X124548399Y-78991400D01* X124643336Y-78972516D01* X124732765Y-78935473D01* X124813249Y-78881696D01* X124881696Y-78813249D01* X124935473Y-78732765D01* X124972516Y-78643336D01* X124991400Y-78548399D01* X124991400Y-78451601D01* X125008600Y-78451601D01* X125008600Y-78548399D01* X125027484Y-78643336D01* X125064527Y-78732765D01* X125118304Y-78813249D01* X125186751Y-78881696D01* X125267235Y-78935473D01* X125356664Y-78972516D01* X125451601Y-78991400D01* X125548399Y-78991400D01* X125643336Y-78972516D01* X125732765Y-78935473D01* X125813249Y-78881696D01* X125881696Y-78813249D01* X125935473Y-78732765D01* X125972516Y-78643336D01* X125991400Y-78548399D01* X125991400Y-78451601D01* X132908600Y-78451601D01* X132908600Y-78548399D01* X132927484Y-78643336D01* X132964527Y-78732765D01* X133018304Y-78813249D01* X133086751Y-78881696D01* X133167235Y-78935473D01* X133256664Y-78972516D01* X133351601Y-78991400D01* X133448399Y-78991400D01* X133543336Y-78972516D01* X133632765Y-78935473D01* X133713249Y-78881696D01* X133781696Y-78813249D01* X133835473Y-78732765D01* X133872516Y-78643336D01* X133891400Y-78548399D01* X133891400Y-78451601D01* X134208600Y-78451601D01* X134208600Y-78548399D01* X134227484Y-78643336D01* X134264527Y-78732765D01* X134318304Y-78813249D01* X134386751Y-78881696D01* X134467235Y-78935473D01* X134556664Y-78972516D01* X134651601Y-78991400D01* X134748399Y-78991400D01* X134843336Y-78972516D01* X134932765Y-78935473D01* X135013249Y-78881696D01* X135081696Y-78813249D01* X135135473Y-78732765D01* X135150000Y-78697694D01* X135164527Y-78732765D01* X135218304Y-78813249D01* X135286751Y-78881696D01* X135367235Y-78935473D01* X135456664Y-78972516D01* X135551601Y-78991400D01* X135648399Y-78991400D01* X135743336Y-78972516D01* X135832765Y-78935473D01* X135913249Y-78881696D01* X135981696Y-78813249D01* X136035473Y-78732765D01* X136072516Y-78643336D01* X136091400Y-78548399D01* X136091400Y-78451601D01* X136072516Y-78356664D01* X136035473Y-78267235D01* X135981696Y-78186751D01* X135946546Y-78151601D01* X137458610Y-78151601D01* X137458610Y-78248399D01* X137477494Y-78343336D01* X137514537Y-78432765D01* X137568314Y-78513249D01* X137636761Y-78581696D01* X137717245Y-78635473D01* X137806674Y-78672516D01* X137901611Y-78691400D01* X137956800Y-78691400D01* X137956800Y-78703492D01* X137977675Y-78808438D01* X138018623Y-78907294D01* X138078069Y-78996262D01* X138153730Y-79071923D01* X138242698Y-79131369D01* X138341554Y-79172317D01* X138446500Y-79193192D01* X138553500Y-79193192D01* X138658446Y-79172317D01* X138757302Y-79131369D01* X138846270Y-79071923D01* X138921931Y-78996262D01* X138981377Y-78907294D01* X139022325Y-78808438D01* X139043200Y-78703492D01* X139043200Y-78596492D01* X139022325Y-78491546D01* X138981377Y-78392690D01* X138921931Y-78303722D01* X138846270Y-78228061D01* X138757302Y-78168615D01* X138658446Y-78127667D01* X138553500Y-78106792D01* X138446500Y-78106792D01* X138433030Y-78109471D01* X138422526Y-78056664D01* X138390455Y-77979237D01* X138451601Y-77991400D01* X138548399Y-77991400D01* X138643336Y-77972516D01* X138732765Y-77935473D01* X138813249Y-77881696D01* X138881696Y-77813249D01* X138935473Y-77732765D01* X138972516Y-77643336D01* X138991400Y-77548399D01* X138991400Y-77451601D01* X138972516Y-77356664D01* X138935473Y-77267235D01* X138881696Y-77186751D01* X138813249Y-77118304D01* X138732765Y-77064527D01* X138643336Y-77027484D01* X138548399Y-77008600D01* X138491400Y-77008600D01* X138491400Y-76951601D01* X138472516Y-76856664D01* X138435473Y-76767235D01* X138381696Y-76686751D01* X138313249Y-76618304D01* X138232765Y-76564527D01* X138143336Y-76527484D01* X138048399Y-76508600D01* X137951601Y-76508600D01* X137856664Y-76527484D01* X137767235Y-76564527D01* X137686751Y-76618304D01* X137618304Y-76686751D01* X137564527Y-76767235D01* X137527484Y-76856664D01* X137508600Y-76951601D01* X137508600Y-77048399D01* X137527484Y-77143336D01* X137564527Y-77232765D01* X137618304Y-77313249D01* X137686751Y-77381696D01* X137767235Y-77435473D01* X137856664Y-77472516D01* X137951601Y-77491400D01* X138008600Y-77491400D01* X138008600Y-77548399D01* X138027484Y-77643336D01* X138059555Y-77720763D01* X137998409Y-77708600D01* X137901611Y-77708600D01* X137806674Y-77727484D01* X137717245Y-77764527D01* X137636761Y-77818304D01* X137568314Y-77886751D01* X137514537Y-77967235D01* X137477494Y-78056664D01* X137458610Y-78151601D01* X135946546Y-78151601D01* X135913249Y-78118304D01* X135832765Y-78064527D01* X135743336Y-78027484D01* X135648399Y-78008600D01* X135551601Y-78008600D01* X135456664Y-78027484D01* X135367235Y-78064527D01* X135286751Y-78118304D01* X135218304Y-78186751D01* X135164527Y-78267235D01* X135150000Y-78302306D01* X135135473Y-78267235D01* X135081696Y-78186751D01* X135013249Y-78118304D01* X134932765Y-78064527D01* X134843336Y-78027484D01* X134748399Y-78008600D01* X134651601Y-78008600D01* X134556664Y-78027484D01* X134467235Y-78064527D01* X134386751Y-78118304D01* X134318304Y-78186751D01* X134264527Y-78267235D01* X134227484Y-78356664D01* X134208600Y-78451601D01* X133891400Y-78451601D01* X133872516Y-78356664D01* X133835473Y-78267235D01* X133781696Y-78186751D01* X133713249Y-78118304D01* X133632765Y-78064527D01* X133543336Y-78027484D01* X133448399Y-78008600D01* X133351601Y-78008600D01* X133256664Y-78027484D01* X133167235Y-78064527D01* X133086751Y-78118304D01* X133018304Y-78186751D01* X132964527Y-78267235D01* X132927484Y-78356664D01* X132908600Y-78451601D01* X125991400Y-78451601D01* X125972516Y-78356664D01* X125935473Y-78267235D01* X125881696Y-78186751D01* X125813249Y-78118304D01* X125732765Y-78064527D01* X125643336Y-78027484D01* X125548399Y-78008600D01* X125451601Y-78008600D01* X125356664Y-78027484D01* X125267235Y-78064527D01* X125186751Y-78118304D01* X125118304Y-78186751D01* X125064527Y-78267235D01* X125027484Y-78356664D01* X125008600Y-78451601D01* X124991400Y-78451601D01* X124972516Y-78356664D01* X124935473Y-78267235D01* X124881696Y-78186751D01* X124813249Y-78118304D01* X124732765Y-78064527D01* X124643336Y-78027484D01* X124548399Y-78008600D01* X124451601Y-78008600D01* X124356664Y-78027484D01* X124267235Y-78064527D01* X124186751Y-78118304D01* X124118304Y-78186751D01* X124064527Y-78267235D01* X124027484Y-78356664D01* X124008600Y-78451601D01* X123991400Y-78451601D01* X123972516Y-78356664D01* X123935473Y-78267235D01* X123881696Y-78186751D01* X123813249Y-78118304D01* X123732765Y-78064527D01* X123643336Y-78027484D01* X123548399Y-78008600D01* X123451601Y-78008600D01* X123356664Y-78027484D01* X123267235Y-78064527D01* X123186751Y-78118304D01* X123118304Y-78186751D01* X123064527Y-78267235D01* X123027484Y-78356664D01* X123008600Y-78451601D01* X122991400Y-78451601D01* X122972516Y-78356664D01* X122935473Y-78267235D01* X122881696Y-78186751D01* X122813249Y-78118304D01* X122732765Y-78064527D01* X122643336Y-78027484D01* X122548399Y-78008600D01* X122451601Y-78008600D01* X122356664Y-78027484D01* X122267235Y-78064527D01* X122186751Y-78118304D01* X122118304Y-78186751D01* X122064527Y-78267235D01* X122027484Y-78356664D01* X122008600Y-78451601D01* X117991400Y-78451601D01* X117972516Y-78356664D01* X117935473Y-78267235D01* X117881696Y-78186751D01* X117813249Y-78118304D01* X117732765Y-78064527D01* X117643336Y-78027484D01* X117548399Y-78008600D01* X117451601Y-78008600D01* X117356664Y-78027484D01* X117267235Y-78064527D01* X117186751Y-78118304D01* X117118304Y-78186751D01* X117064527Y-78267235D01* X117027484Y-78356664D01* X117008600Y-78451601D01* X116991400Y-78451601D01* X116972516Y-78356664D01* X116935473Y-78267235D01* X116881696Y-78186751D01* X116813249Y-78118304D01* X116732765Y-78064527D01* X116643336Y-78027484D01* X116548399Y-78008600D01* X116451601Y-78008600D01* X116356664Y-78027484D01* X116267235Y-78064527D01* X116186751Y-78118304D01* X116118304Y-78186751D01* X116064527Y-78267235D01* X116027484Y-78356664D01* X116008600Y-78451601D01* X114991400Y-78451601D01* X114972516Y-78356664D01* X114935473Y-78267235D01* X114881696Y-78186751D01* X114813249Y-78118304D01* X114732765Y-78064527D01* X114643336Y-78027484D01* X114548399Y-78008600D01* X114451601Y-78008600D01* X114356664Y-78027484D01* X114267235Y-78064527D01* X114186751Y-78118304D01* X114118304Y-78186751D01* X114064527Y-78267235D01* X114027484Y-78356664D01* X114008600Y-78451601D01* X113991400Y-78451601D01* X113972516Y-78356664D01* X113935473Y-78267235D01* X113881696Y-78186751D01* X113813249Y-78118304D01* X113732765Y-78064527D01* X113643336Y-78027484D01* X113548399Y-78008600D01* X113451601Y-78008600D01* X113356664Y-78027484D01* X113267235Y-78064527D01* X113186751Y-78118304D01* X113118304Y-78186751D01* X113064527Y-78267235D01* X113027484Y-78356664D01* X113008600Y-78451601D01* X112991400Y-78451601D01* X112972516Y-78356664D01* X112935473Y-78267235D01* X112881696Y-78186751D01* X112813249Y-78118304D01* X112732765Y-78064527D01* X112643336Y-78027484D01* X112548399Y-78008600D01* X112451601Y-78008600D01* X112356664Y-78027484D01* X112267235Y-78064527D01* X112186751Y-78118304D01* X112118304Y-78186751D01* X112064527Y-78267235D01* X112027484Y-78356664D01* X112008600Y-78451601D01* X110085000Y-78451601D01* X110085000Y-77451601D01* X112008600Y-77451601D01* X112008600Y-77548399D01* X112027484Y-77643336D01* X112064527Y-77732765D01* X112118304Y-77813249D01* X112186751Y-77881696D01* X112267235Y-77935473D01* X112356664Y-77972516D01* X112451601Y-77991400D01* X112548399Y-77991400D01* X112643336Y-77972516D01* X112732765Y-77935473D01* X112813249Y-77881696D01* X112881696Y-77813249D01* X112935473Y-77732765D01* X112972516Y-77643336D01* X112991400Y-77548399D01* X112991400Y-77451601D01* X119008600Y-77451601D01* X119008600Y-77548399D01* X119027484Y-77643336D01* X119064527Y-77732765D01* X119118304Y-77813249D01* X119186751Y-77881696D01* X119267235Y-77935473D01* X119356664Y-77972516D01* X119451601Y-77991400D01* X119548399Y-77991400D01* X119643336Y-77972516D01* X119732765Y-77935473D01* X119813249Y-77881696D01* X119881696Y-77813249D01* X119935473Y-77732765D01* X119972516Y-77643336D01* X119991400Y-77548399D01* X119991400Y-77451601D01* X120008600Y-77451601D01* X120008600Y-77548399D01* X120027484Y-77643336D01* X120064527Y-77732765D01* X120118304Y-77813249D01* X120186751Y-77881696D01* X120267235Y-77935473D01* X120356664Y-77972516D01* X120451601Y-77991400D01* X120548399Y-77991400D01* X120643336Y-77972516D01* X120732765Y-77935473D01* X120813249Y-77881696D01* X120881696Y-77813249D01* X120935473Y-77732765D01* X120972516Y-77643336D01* X120991400Y-77548399D01* X120991400Y-77451601D01* X121008600Y-77451601D01* X121008600Y-77548399D01* X121027484Y-77643336D01* X121064527Y-77732765D01* X121118304Y-77813249D01* X121186751Y-77881696D01* X121267235Y-77935473D01* X121356664Y-77972516D01* X121451601Y-77991400D01* X121548399Y-77991400D01* X121643336Y-77972516D01* X121732765Y-77935473D01* X121813249Y-77881696D01* X121881696Y-77813249D01* X121935473Y-77732765D01* X121972516Y-77643336D01* X121991400Y-77548399D01* X121991400Y-77451601D01* X121972516Y-77356664D01* X121935473Y-77267235D01* X121881696Y-77186751D01* X121813249Y-77118304D01* X121732765Y-77064527D01* X121643336Y-77027484D01* X121548399Y-77008600D01* X121451601Y-77008600D01* X121356664Y-77027484D01* X121267235Y-77064527D01* X121186751Y-77118304D01* X121118304Y-77186751D01* X121064527Y-77267235D01* X121027484Y-77356664D01* X121008600Y-77451601D01* X120991400Y-77451601D01* X120972516Y-77356664D01* X120935473Y-77267235D01* X120881696Y-77186751D01* X120813249Y-77118304D01* X120732765Y-77064527D01* X120643336Y-77027484D01* X120548399Y-77008600D01* X120451601Y-77008600D01* X120356664Y-77027484D01* X120267235Y-77064527D01* X120186751Y-77118304D01* X120118304Y-77186751D01* X120064527Y-77267235D01* X120027484Y-77356664D01* X120008600Y-77451601D01* X119991400Y-77451601D01* X119972516Y-77356664D01* X119935473Y-77267235D01* X119881696Y-77186751D01* X119813249Y-77118304D01* X119732765Y-77064527D01* X119643336Y-77027484D01* X119548399Y-77008600D01* X119451601Y-77008600D01* X119356664Y-77027484D01* X119267235Y-77064527D01* X119186751Y-77118304D01* X119118304Y-77186751D01* X119064527Y-77267235D01* X119027484Y-77356664D01* X119008600Y-77451601D01* X112991400Y-77451601D01* X112972516Y-77356664D01* X112935473Y-77267235D01* X112881696Y-77186751D01* X112813249Y-77118304D01* X112732765Y-77064527D01* X112643336Y-77027484D01* X112548399Y-77008600D01* X112451601Y-77008600D01* X112356664Y-77027484D01* X112267235Y-77064527D01* X112186751Y-77118304D01* X112118304Y-77186751D01* X112064527Y-77267235D01* X112027484Y-77356664D01* X112008600Y-77451601D01* X110085000Y-77451601D01* X110085000Y-76451601D01* X115008600Y-76451601D01* X115008600Y-76548399D01* X115027484Y-76643336D01* X115064527Y-76732765D01* X115118304Y-76813249D01* X115186751Y-76881696D01* X115267235Y-76935473D01* X115356664Y-76972516D01* X115451601Y-76991400D01* X115548399Y-76991400D01* X115643336Y-76972516D01* X115732765Y-76935473D01* X115813249Y-76881696D01* X115881696Y-76813249D01* X115935473Y-76732765D01* X115972516Y-76643336D01* X115991400Y-76548399D01* X115991400Y-76451601D01* X118008600Y-76451601D01* X118008600Y-76548399D01* X118027484Y-76643336D01* X118064527Y-76732765D01* X118118304Y-76813249D01* X118186751Y-76881696D01* X118267235Y-76935473D01* X118356664Y-76972516D01* X118451601Y-76991400D01* X118548399Y-76991400D01* X118643336Y-76972516D01* X118732765Y-76935473D01* X118813249Y-76881696D01* X118881696Y-76813249D01* X118935473Y-76732765D01* X118972516Y-76643336D01* X118991400Y-76548399D01* X118991400Y-76451601D01* X119008600Y-76451601D01* X119008600Y-76548399D01* X119027484Y-76643336D01* X119064527Y-76732765D01* X119118304Y-76813249D01* X119186751Y-76881696D01* X119267235Y-76935473D01* X119356664Y-76972516D01* X119451601Y-76991400D01* X119548399Y-76991400D01* X119643336Y-76972516D01* X119732765Y-76935473D01* X119813249Y-76881696D01* X119881696Y-76813249D01* X119935473Y-76732765D01* X119972516Y-76643336D01* X119991400Y-76548399D01* X119991400Y-76451601D01* X120008600Y-76451601D01* X120008600Y-76548399D01* X120027484Y-76643336D01* X120064527Y-76732765D01* X120118304Y-76813249D01* X120186751Y-76881696D01* X120267235Y-76935473D01* X120356664Y-76972516D01* X120451601Y-76991400D01* X120548399Y-76991400D01* X120643336Y-76972516D01* X120732765Y-76935473D01* X120813249Y-76881696D01* X120881696Y-76813249D01* X120935473Y-76732765D01* X120972516Y-76643336D01* X120991400Y-76548399D01* X120991400Y-76451601D01* X121008600Y-76451601D01* X121008600Y-76548399D01* X121027484Y-76643336D01* X121064527Y-76732765D01* X121118304Y-76813249D01* X121186751Y-76881696D01* X121267235Y-76935473D01* X121356664Y-76972516D01* X121451601Y-76991400D01* X121548399Y-76991400D01* X121643336Y-76972516D01* X121732765Y-76935473D01* X121813249Y-76881696D01* X121881696Y-76813249D01* X121935473Y-76732765D01* X121972516Y-76643336D01* X121991400Y-76548399D01* X121991400Y-76451601D01* X124008600Y-76451601D01* X124008600Y-76548399D01* X124027484Y-76643336D01* X124064527Y-76732765D01* X124118304Y-76813249D01* X124186751Y-76881696D01* X124267235Y-76935473D01* X124356664Y-76972516D01* X124451601Y-76991400D01* X124548399Y-76991400D01* X124643336Y-76972516D01* X124732765Y-76935473D01* X124813249Y-76881696D01* X124881696Y-76813249D01* X124935473Y-76732765D01* X124972516Y-76643336D01* X124991400Y-76548399D01* X124991400Y-76451601D01* X125008600Y-76451601D01* X125008600Y-76548399D01* X125027484Y-76643336D01* X125064527Y-76732765D01* X125118304Y-76813249D01* X125186751Y-76881696D01* X125267235Y-76935473D01* X125356664Y-76972516D01* X125451601Y-76991400D01* X125548399Y-76991400D01* X125643336Y-76972516D01* X125732765Y-76935473D01* X125813249Y-76881696D01* X125881696Y-76813249D01* X125935473Y-76732765D01* X125972516Y-76643336D01* X125991400Y-76548399D01* X125991400Y-76451601D01* X126008600Y-76451601D01* X126008600Y-76548399D01* X126027484Y-76643336D01* X126064527Y-76732765D01* X126118304Y-76813249D01* X126186751Y-76881696D01* X126267235Y-76935473D01* X126356664Y-76972516D01* X126451601Y-76991400D01* X126548399Y-76991400D01* X126643336Y-76972516D01* X126732765Y-76935473D01* X126813249Y-76881696D01* X126881696Y-76813249D01* X126935473Y-76732765D01* X126972516Y-76643336D01* X126991400Y-76548399D01* X126991400Y-76451601D01* X126972516Y-76356664D01* X126935473Y-76267235D01* X126881696Y-76186751D01* X126813249Y-76118304D01* X126732765Y-76064527D01* X126701560Y-76051601D01* X132908600Y-76051601D01* X132908600Y-76148399D01* X132927484Y-76243336D01* X132964527Y-76332765D01* X133018304Y-76413249D01* X133086751Y-76481696D01* X133167235Y-76535473D01* X133256664Y-76572516D01* X133351601Y-76591400D01* X133448399Y-76591400D01* X133543336Y-76572516D01* X133632765Y-76535473D01* X133713249Y-76481696D01* X133781696Y-76413249D01* X133835473Y-76332765D01* X133872516Y-76243336D01* X133891400Y-76148399D01* X133891400Y-76051601D01* X134908594Y-76051601D01* X134908594Y-76148399D01* X134927478Y-76243336D01* X134964521Y-76332765D01* X135018298Y-76413249D01* X135086745Y-76481696D01* X135167229Y-76535473D01* X135256658Y-76572516D01* X135351595Y-76591400D01* X135448393Y-76591400D01* X135543330Y-76572516D01* X135632759Y-76535473D01* X135713243Y-76481696D01* X135781690Y-76413249D01* X135835467Y-76332765D01* X135872510Y-76243336D01* X135891394Y-76148399D01* X135891394Y-76051601D01* X135872510Y-75956664D01* X135835467Y-75867235D01* X135781690Y-75786751D01* X135713243Y-75718304D01* X135632759Y-75664527D01* X135543330Y-75627484D01* X135448393Y-75608600D01* X135351595Y-75608600D01* X135256658Y-75627484D01* X135167229Y-75664527D01* X135086745Y-75718304D01* X135018298Y-75786751D01* X134964521Y-75867235D01* X134927478Y-75956664D01* X134908594Y-76051601D01* X133891400Y-76051601D01* X133872516Y-75956664D01* X133835473Y-75867235D01* X133781696Y-75786751D01* X133713249Y-75718304D01* X133632765Y-75664527D01* X133543336Y-75627484D01* X133448399Y-75608600D01* X133351601Y-75608600D01* X133256664Y-75627484D01* X133167235Y-75664527D01* X133086751Y-75718304D01* X133018304Y-75786751D01* X132964527Y-75867235D01* X132927484Y-75956664D01* X132908600Y-76051601D01* X126701560Y-76051601D01* X126643336Y-76027484D01* X126548399Y-76008600D01* X126451601Y-76008600D01* X126356664Y-76027484D01* X126267235Y-76064527D01* X126186751Y-76118304D01* X126118304Y-76186751D01* X126064527Y-76267235D01* X126027484Y-76356664D01* X126008600Y-76451601D01* X125991400Y-76451601D01* X125972516Y-76356664D01* X125935473Y-76267235D01* X125881696Y-76186751D01* X125813249Y-76118304D01* X125732765Y-76064527D01* X125643336Y-76027484D01* X125548399Y-76008600D01* X125451601Y-76008600D01* X125356664Y-76027484D01* X125267235Y-76064527D01* X125186751Y-76118304D01* X125118304Y-76186751D01* X125064527Y-76267235D01* X125027484Y-76356664D01* X125008600Y-76451601D01* X124991400Y-76451601D01* X124972516Y-76356664D01* X124935473Y-76267235D01* X124881696Y-76186751D01* X124813249Y-76118304D01* X124732765Y-76064527D01* X124643336Y-76027484D01* X124548399Y-76008600D01* X124451601Y-76008600D01* X124356664Y-76027484D01* X124267235Y-76064527D01* X124186751Y-76118304D01* X124118304Y-76186751D01* X124064527Y-76267235D01* X124027484Y-76356664D01* X124008600Y-76451601D01* X121991400Y-76451601D01* X121972516Y-76356664D01* X121935473Y-76267235D01* X121881696Y-76186751D01* X121813249Y-76118304D01* X121732765Y-76064527D01* X121643336Y-76027484D01* X121548399Y-76008600D01* X121451601Y-76008600D01* X121356664Y-76027484D01* X121267235Y-76064527D01* X121186751Y-76118304D01* X121118304Y-76186751D01* X121064527Y-76267235D01* X121027484Y-76356664D01* X121008600Y-76451601D01* X120991400Y-76451601D01* X120972516Y-76356664D01* X120935473Y-76267235D01* X120881696Y-76186751D01* X120813249Y-76118304D01* X120732765Y-76064527D01* X120643336Y-76027484D01* X120548399Y-76008600D01* X120451601Y-76008600D01* X120356664Y-76027484D01* X120267235Y-76064527D01* X120186751Y-76118304D01* X120118304Y-76186751D01* X120064527Y-76267235D01* X120027484Y-76356664D01* X120008600Y-76451601D01* X119991400Y-76451601D01* X119972516Y-76356664D01* X119935473Y-76267235D01* X119881696Y-76186751D01* X119813249Y-76118304D01* X119732765Y-76064527D01* X119643336Y-76027484D01* X119548399Y-76008600D01* X119451601Y-76008600D01* X119356664Y-76027484D01* X119267235Y-76064527D01* X119186751Y-76118304D01* X119118304Y-76186751D01* X119064527Y-76267235D01* X119027484Y-76356664D01* X119008600Y-76451601D01* X118991400Y-76451601D01* X118972516Y-76356664D01* X118935473Y-76267235D01* X118881696Y-76186751D01* X118813249Y-76118304D01* X118732765Y-76064527D01* X118643336Y-76027484D01* X118548399Y-76008600D01* X118451601Y-76008600D01* X118356664Y-76027484D01* X118267235Y-76064527D01* X118186751Y-76118304D01* X118118304Y-76186751D01* X118064527Y-76267235D01* X118027484Y-76356664D01* X118008600Y-76451601D01* X115991400Y-76451601D01* X115972516Y-76356664D01* X115935473Y-76267235D01* X115881696Y-76186751D01* X115813249Y-76118304D01* X115732765Y-76064527D01* X115643336Y-76027484D01* X115548399Y-76008600D01* X115451601Y-76008600D01* X115356664Y-76027484D01* X115267235Y-76064527D01* X115186751Y-76118304D01* X115118304Y-76186751D01* X115064527Y-76267235D01* X115027484Y-76356664D01* X115008600Y-76451601D01* X110085000Y-76451601D01* X110085000Y-75085000D01* X112236595Y-75085000D01* X112186751Y-75118304D01* G04 #@! TO.N,/fpga_power/VCC_GXBL* G36* X113221644Y-87916589D02* X113402254Y-87991400D01* X113597746Y-87991400D01* X113778356Y-87916589D01* X113909945Y-87785000D01* X114090055Y-87785000D01* X114221644Y-87916589D01* X114402254Y-87991400D01* X114597746Y-87991400D01* X114778356Y-87916589D01* X114909945Y-87785000D01* X115090055Y-87785000D01* X115221644Y-87916589D01* X115402254Y-87991400D01* X115597746Y-87991400D01* X115778356Y-87916589D01* X115909945Y-87785000D01* X116090055Y-87785000D01* X116221644Y-87916589D01* X116402254Y-87991400D01* X116597746Y-87991400D01* X116778356Y-87916589D01* X116909945Y-87785000D01* X117090055Y-87785000D01* X117221644Y-87916589D01* X117402254Y-87991400D01* X117597746Y-87991400D01* X117778356Y-87916589D01* X117909945Y-87785000D01* X120664792Y-87785000D01* X121092424Y-88212632D01* X121083411Y-88221644D01* X121008600Y-88402254D01* X121008600Y-88597746D01* X121083411Y-88778356D01* X121221644Y-88916589D01* X121402254Y-88991400D01* X121597746Y-88991400D01* X121778356Y-88916589D01* X121787369Y-88907577D01* X122092424Y-89212632D01* X122083411Y-89221644D01* X122008600Y-89402254D01* X122008600Y-89597746D01* X122083411Y-89778356D01* X122221644Y-89916589D01* X122402254Y-89991400D01* X122597746Y-89991400D01* X122778356Y-89916589D01* X122787369Y-89907577D01* X123092424Y-90212632D01* X123083411Y-90221644D01* X123008600Y-90402254D01* X123008600Y-90597746D01* X123083411Y-90778356D01* X123221644Y-90916589D01* X123402254Y-90991400D01* X123597746Y-90991400D01* X123778356Y-90916589D01* X123787369Y-90907577D01* X124092424Y-91212632D01* X124083411Y-91221644D01* X124008600Y-91402254D01* X124008600Y-91597746D01* X124083411Y-91778356D01* X124221644Y-91916589D01* X124402254Y-91991400D01* X124597746Y-91991400D01* X124778356Y-91916589D01* X124787369Y-91907577D01* X125092424Y-92212632D01* X125083411Y-92221644D01* X125008600Y-92402254D01* X125008600Y-92597746D01* X125083411Y-92778356D01* X125221644Y-92916589D01* X125402254Y-92991400D01* X125597746Y-92991400D01* X125778356Y-92916589D01* X125787369Y-92907577D01* X126092424Y-93212632D01* X126083411Y-93221644D01* X126008600Y-93402254D01* X126008600Y-93597746D01* X126083411Y-93778356D01* X126221644Y-93916589D01* X126402254Y-93991400D01* X126597746Y-93991400D01* X126778356Y-93916589D01* X126787369Y-93907577D01* X129379792Y-96500000D01* X127964792Y-97915000D01* X124535208Y-97915000D01* X120607548Y-93987340D01* X120778356Y-93916589D01* X120916589Y-93778356D01* X120991400Y-93597746D01* X120991400Y-93402254D01* X122008600Y-93402254D01* X122008600Y-93597746D01* X122083411Y-93778356D01* X122221644Y-93916589D01* X122402254Y-93991400D01* X122597746Y-93991400D01* X122778356Y-93916589D01* X122916589Y-93778356D01* X122991400Y-93597746D01* X122991400Y-93402254D01* X123008600Y-93402254D01* X123008600Y-93597746D01* X123083411Y-93778356D01* X123221644Y-93916589D01* X123402254Y-93991400D01* X123597746Y-93991400D01* X123778356Y-93916589D01* X123916589Y-93778356D01* X123991400Y-93597746D01* X123991400Y-93402254D01* X124008600Y-93402254D01* X124008600Y-93597746D01* X124083411Y-93778356D01* X124221644Y-93916589D01* X124402254Y-93991400D01* X124597746Y-93991400D01* X124778356Y-93916589D01* X124916589Y-93778356D01* X124991400Y-93597746D01* X124991400Y-93402254D01* X124916589Y-93221644D01* X124778356Y-93083411D01* X124597746Y-93008600D01* X124402254Y-93008600D01* X124221644Y-93083411D01* X124083411Y-93221644D01* X124008600Y-93402254D01* X123991400Y-93402254D01* X123916589Y-93221644D01* X123778356Y-93083411D01* X123597746Y-93008600D01* X123402254Y-93008600D01* X123221644Y-93083411D01* X123083411Y-93221644D01* X123008600Y-93402254D01* X122991400Y-93402254D01* X122916589Y-93221644D01* X122778356Y-93083411D01* X122597746Y-93008600D01* X122402254Y-93008600D01* X122221644Y-93083411D01* X122083411Y-93221644D01* X122008600Y-93402254D01* X120991400Y-93402254D01* X120916589Y-93221644D01* X120778356Y-93083411D01* X120597746Y-93008600D01* X120402254Y-93008600D01* X120221644Y-93083411D01* X120083411Y-93221644D01* X120012660Y-93392452D01* X119022462Y-92402254D01* X120008600Y-92402254D01* X120008600Y-92597746D01* X120083411Y-92778356D01* X120221644Y-92916589D01* X120402254Y-92991400D01* X120597746Y-92991400D01* X120778356Y-92916589D01* X120916589Y-92778356D01* X120991400Y-92597746D01* X120991400Y-92402254D01* X122008600Y-92402254D01* X122008600Y-92597746D01* X122083411Y-92778356D01* X122221644Y-92916589D01* X122402254Y-92991400D01* X122597746Y-92991400D01* X122778356Y-92916589D01* X122916589Y-92778356D01* X122991400Y-92597746D01* X122991400Y-92402254D01* X123008600Y-92402254D01* X123008600Y-92597746D01* X123083411Y-92778356D01* X123221644Y-92916589D01* X123402254Y-92991400D01* X123597746Y-92991400D01* X123778356Y-92916589D01* X123916589Y-92778356D01* X123991400Y-92597746D01* X123991400Y-92402254D01* X123916589Y-92221644D01* X123778356Y-92083411D01* X123597746Y-92008600D01* X123402254Y-92008600D01* X123221644Y-92083411D01* X123083411Y-92221644D01* X123008600Y-92402254D01* X122991400Y-92402254D01* X122916589Y-92221644D01* X122778356Y-92083411D01* X122597746Y-92008600D01* X122402254Y-92008600D01* X122221644Y-92083411D01* X122083411Y-92221644D01* X122008600Y-92402254D01* X120991400Y-92402254D01* X120916589Y-92221644D01* X120778356Y-92083411D01* X120597746Y-92008600D01* X120402254Y-92008600D01* X120221644Y-92083411D01* X120083411Y-92221644D01* X120008600Y-92402254D01* X119022462Y-92402254D01* X118607548Y-91987340D01* X118778356Y-91916589D01* X118916589Y-91778356D01* X118991400Y-91597746D01* X118991400Y-91402254D01* X119008600Y-91402254D01* X119008600Y-91597746D01* X119083411Y-91778356D01* X119221644Y-91916589D01* X119402254Y-91991400D01* X119597746Y-91991400D01* X119778356Y-91916589D01* X119916589Y-91778356D01* X119991400Y-91597746D01* X119991400Y-91402254D01* X120008600Y-91402254D01* X120008600Y-91597746D01* X120083411Y-91778356D01* X120221644Y-91916589D01* X120402254Y-91991400D01* X120597746Y-91991400D01* X120778356Y-91916589D01* X120916589Y-91778356D01* X120991400Y-91597746D01* X120991400Y-91402254D01* X121008600Y-91402254D01* X121008600Y-91597746D01* X121083411Y-91778356D01* X121221644Y-91916589D01* X121402254Y-91991400D01* X121597746Y-91991400D01* X121778356Y-91916589D01* X121916589Y-91778356D01* X121991400Y-91597746D01* X121991400Y-91402254D01* X122008600Y-91402254D01* X122008600Y-91597746D01* X122083411Y-91778356D01* X122221644Y-91916589D01* X122402254Y-91991400D01* X122597746Y-91991400D01* X122778356Y-91916589D01* X122916589Y-91778356D01* X122991400Y-91597746D01* X122991400Y-91402254D01* X122916589Y-91221644D01* X122778356Y-91083411D01* X122597746Y-91008600D01* X122402254Y-91008600D01* X122221644Y-91083411D01* X122083411Y-91221644D01* X122008600Y-91402254D01* X121991400Y-91402254D01* X121916589Y-91221644D01* X121778356Y-91083411D01* X121597746Y-91008600D01* X121402254Y-91008600D01* X121221644Y-91083411D01* X121083411Y-91221644D01* X121008600Y-91402254D01* X120991400Y-91402254D01* X120916589Y-91221644D01* X120778356Y-91083411D01* X120597746Y-91008600D01* X120402254Y-91008600D01* X120221644Y-91083411D01* X120083411Y-91221644D01* X120008600Y-91402254D01* X119991400Y-91402254D01* X119916589Y-91221644D01* X119778356Y-91083411D01* X119597746Y-91008600D01* X119402254Y-91008600D01* X119221644Y-91083411D01* X119083411Y-91221644D01* X119008600Y-91402254D01* X118991400Y-91402254D01* X118916589Y-91221644D01* X118778356Y-91083411D01* X118597746Y-91008600D01* X118402254Y-91008600D01* X118221644Y-91083411D01* X118083411Y-91221644D01* X118008600Y-91402254D01* X118008600Y-91597746D01* X118083411Y-91778356D01* X118221644Y-91916589D01* X118225588Y-91918223D01* X117761223Y-91923686D01* X117778356Y-91916589D01* X117916589Y-91778356D01* X117991400Y-91597746D01* X117991400Y-91402254D01* X117916589Y-91221644D01* X117778356Y-91083411D01* X117597746Y-91008600D01* X117402254Y-91008600D01* X117221644Y-91083411D01* X117083411Y-91221644D01* X117008600Y-91402254D01* X117008600Y-91597746D01* X117083411Y-91778356D01* X117221644Y-91916589D01* X117253206Y-91929662D01* X116731990Y-91935794D01* X116778356Y-91916589D01* X116916589Y-91778356D01* X116991400Y-91597746D01* X116991400Y-91402254D01* X116916589Y-91221644D01* X116778356Y-91083411D01* X116597746Y-91008600D01* X116402254Y-91008600D01* X116221644Y-91083411D01* X116083411Y-91221644D01* X116008600Y-91402254D01* X116008600Y-91597746D01* X116083411Y-91778356D01* X116221644Y-91916589D01* X116280824Y-91941102D01* X115702743Y-91947903D01* X115778356Y-91916583D01* X115916589Y-91778350D01* X115991400Y-91597740D01* X115991400Y-91402248D01* X115916589Y-91221638D01* X115778356Y-91083405D01* X115597746Y-91008594D01* X115402254Y-91008594D01* X115221644Y-91083405D01* X115083411Y-91221638D01* X115008600Y-91402248D01* X115008600Y-91597740D01* X115083411Y-91778350D01* X115221644Y-91916583D01* X115308456Y-91952542D01* X114673525Y-91960011D01* X114778356Y-91916589D01* X114916589Y-91778356D01* X114991400Y-91597746D01* X114991400Y-91402254D01* X114916589Y-91221644D01* X114778356Y-91083411D01* X114597746Y-91008600D01* X114402254Y-91008600D01* X114221644Y-91083411D01* X114083411Y-91221644D01* X114008600Y-91402254D01* X114008600Y-91597746D01* X114083411Y-91778356D01* X114221644Y-91916589D01* X114336060Y-91963982D01* X113644292Y-91972120D01* X113778356Y-91916589D01* X113916589Y-91778356D01* X113991400Y-91597746D01* X113991400Y-91402254D01* X113916589Y-91221644D01* X113778356Y-91083411D01* X113597746Y-91008600D01* X113402254Y-91008600D01* X113221644Y-91083411D01* X113083411Y-91221644D01* X113008600Y-91402254D01* X113008600Y-91597746D01* X113083411Y-91778356D01* X113221644Y-91916589D01* X113363678Y-91975421D01* X112615059Y-91984229D01* X112778356Y-91916589D01* X112916589Y-91778356D01* X112991400Y-91597746D01* X112991400Y-91402254D01* X112916589Y-91221644D01* X112778356Y-91083411D01* X112597746Y-91008600D01* X112402254Y-91008600D01* X112221644Y-91083411D01* X112083411Y-91221644D01* X112008600Y-91402254D01* X112008600Y-91597746D01* X112083411Y-91778356D01* X112221644Y-91916589D01* X112391296Y-91986861D01* X110085000Y-92013994D01* X110085000Y-91779945D01* X110221644Y-91916589D01* X110402254Y-91991400D01* X110597746Y-91991400D01* X110778356Y-91916589D01* X110916589Y-91778356D01* X110991400Y-91597746D01* X110991400Y-91402254D01* X111008600Y-91402254D01* X111008600Y-91597746D01* X111083411Y-91778356D01* X111221644Y-91916589D01* X111402254Y-91991400D01* X111597746Y-91991400D01* X111778356Y-91916589D01* X111916589Y-91778356D01* X111991400Y-91597746D01* X111991400Y-91402254D01* X111916589Y-91221644D01* X111778356Y-91083411D01* X111597746Y-91008600D01* X111402254Y-91008600D01* X111221644Y-91083411D01* X111083411Y-91221644D01* X111008600Y-91402254D01* X110991400Y-91402254D01* X110916589Y-91221644D01* X110778356Y-91083411D01* X110597746Y-91008600D01* X110402254Y-91008600D01* X110221644Y-91083411D01* X110085000Y-91220055D01* X110085000Y-90779945D01* X110221644Y-90916589D01* X110402254Y-90991400D01* X110597746Y-90991400D01* X110778356Y-90916589D01* X110916589Y-90778356D01* X110991400Y-90597746D01* X110991400Y-90402254D01* X111008600Y-90402254D01* X111008600Y-90597746D01* X111083411Y-90778356D01* X111221644Y-90916589D01* X111402254Y-90991400D01* X111597746Y-90991400D01* X111778356Y-90916589D01* X111916589Y-90778356D01* X111991400Y-90597746D01* X111991400Y-90402254D01* X113008600Y-90402254D01* X113008600Y-90597746D01* X113083411Y-90778356D01* X113221644Y-90916589D01* X113402254Y-90991400D01* X113597746Y-90991400D01* X113778356Y-90916589D01* X113916589Y-90778356D01* X113991400Y-90597746D01* X113991400Y-90402254D01* X115008600Y-90402254D01* X115008600Y-90597746D01* X115083411Y-90778356D01* X115221644Y-90916589D01* X115402254Y-90991400D01* X115597746Y-90991400D01* X115778356Y-90916589D01* X115916589Y-90778356D01* X115991400Y-90597746D01* X115991400Y-90402254D01* X116008600Y-90402254D01* X116008600Y-90597746D01* X116083411Y-90778356D01* X116221644Y-90916589D01* X116402254Y-90991400D01* X116597746Y-90991400D01* X116778356Y-90916589D01* X116916589Y-90778356D01* X116991400Y-90597746D01* X116991400Y-90402254D01* X119008600Y-90402254D01* X119008600Y-90597746D01* X119083411Y-90778356D01* X119221644Y-90916589D01* X119402254Y-90991400D01* X119597746Y-90991400D01* X119778356Y-90916589D01* X119916589Y-90778356D01* X119991400Y-90597746D01* X119991400Y-90402254D01* X120008600Y-90402254D01* X120008600Y-90597746D01* X120083411Y-90778356D01* X120221644Y-90916589D01* X120402254Y-90991400D01* X120597746Y-90991400D01* X120778356Y-90916589D01* X120916589Y-90778356D01* X120991400Y-90597746D01* X120991400Y-90402254D01* X121008600Y-90402254D01* X121008600Y-90597746D01* X121083411Y-90778356D01* X121221644Y-90916589D01* X121402254Y-90991400D01* X121597746Y-90991400D01* X121778356Y-90916589D01* X121916589Y-90778356D01* X121991400Y-90597746D01* X121991400Y-90402254D01* X121916589Y-90221644D01* X121778356Y-90083411D01* X121597746Y-90008600D01* X121402254Y-90008600D01* X121221644Y-90083411D01* X121083411Y-90221644D01* X121008600Y-90402254D01* X120991400Y-90402254D01* X120916589Y-90221644D01* X120778356Y-90083411D01* X120597746Y-90008600D01* X120402254Y-90008600D01* X120221644Y-90083411D01* X120083411Y-90221644D01* X120008600Y-90402254D01* X119991400Y-90402254D01* X119916589Y-90221644D01* X119778356Y-90083411D01* X119597746Y-90008600D01* X119402254Y-90008600D01* X119221644Y-90083411D01* X119083411Y-90221644D01* X119008600Y-90402254D01* X116991400Y-90402254D01* X116916589Y-90221644D01* X116778356Y-90083411D01* X116597746Y-90008600D01* X116402254Y-90008600D01* X116221644Y-90083411D01* X116083411Y-90221644D01* X116008600Y-90402254D01* X115991400Y-90402254D01* X115916589Y-90221644D01* X115778356Y-90083411D01* X115597746Y-90008600D01* X115402254Y-90008600D01* X115221644Y-90083411D01* X115083411Y-90221644D01* X115008600Y-90402254D01* X113991400Y-90402254D01* X113916589Y-90221644D01* X113778356Y-90083411D01* X113597746Y-90008600D01* X113402254Y-90008600D01* X113221644Y-90083411D01* X113083411Y-90221644D01* X113008600Y-90402254D01* X111991400Y-90402254D01* X111916589Y-90221644D01* X111778356Y-90083411D01* X111597746Y-90008600D01* X111402254Y-90008600D01* X111221644Y-90083411D01* X111083411Y-90221644D01* X111008600Y-90402254D01* X110991400Y-90402254D01* X110916589Y-90221644D01* X110778356Y-90083411D01* X110597746Y-90008600D01* X110402254Y-90008600D01* X110221644Y-90083411D01* X110085000Y-90220055D01* X110085000Y-89402254D01* X114008600Y-89402254D01* X114008600Y-89597746D01* X114083411Y-89778356D01* X114221644Y-89916589D01* X114402254Y-89991400D01* X114597746Y-89991400D01* X114778356Y-89916589D01* X114916589Y-89778356D01* X114991400Y-89597746D01* X114991400Y-89402254D01* X118008600Y-89402254D01* X118008600Y-89597746D01* X118083411Y-89778356D01* X118221644Y-89916589D01* X118402254Y-89991400D01* X118597746Y-89991400D01* X118778356Y-89916589D01* X118916589Y-89778356D01* X118991400Y-89597746D01* X118991400Y-89402254D01* X119008600Y-89402254D01* X119008600Y-89597746D01* X119083411Y-89778356D01* X119221644Y-89916589D01* X119402254Y-89991400D01* X119597746Y-89991400D01* X119778356Y-89916589D01* X119916589Y-89778356D01* X119991400Y-89597746D01* X119991400Y-89402254D01* X120008600Y-89402254D01* X120008600Y-89597746D01* X120083411Y-89778356D01* X120221644Y-89916589D01* X120402254Y-89991400D01* X120597746Y-89991400D01* X120778356Y-89916589D01* X120916589Y-89778356D01* X120991400Y-89597746D01* X120991400Y-89402254D01* X121008600Y-89402254D01* X121008600Y-89597746D01* X121083411Y-89778356D01* X121221644Y-89916589D01* X121402254Y-89991400D01* X121597746Y-89991400D01* X121778356Y-89916589D01* X121916589Y-89778356D01* X121991400Y-89597746D01* X121991400Y-89402254D01* X121916589Y-89221644D01* X121778356Y-89083411D01* X121597746Y-89008600D01* X121402254Y-89008600D01* X121221644Y-89083411D01* X121083411Y-89221644D01* X121008600Y-89402254D01* X120991400Y-89402254D01* X120916589Y-89221644D01* X120778356Y-89083411D01* X120597746Y-89008600D01* X120402254Y-89008600D01* X120221644Y-89083411D01* X120083411Y-89221644D01* X120008600Y-89402254D01* X119991400Y-89402254D01* X119916589Y-89221644D01* X119778356Y-89083411D01* X119597746Y-89008600D01* X119402254Y-89008600D01* X119221644Y-89083411D01* X119083411Y-89221644D01* X119008600Y-89402254D01* X118991400Y-89402254D01* X118916589Y-89221644D01* X118778356Y-89083411D01* X118597746Y-89008600D01* X118402254Y-89008600D01* X118221644Y-89083411D01* X118083411Y-89221644D01* X118008600Y-89402254D01* X114991400Y-89402254D01* X114916589Y-89221644D01* X114778356Y-89083411D01* X114597746Y-89008600D01* X114402254Y-89008600D01* X114221644Y-89083411D01* X114083411Y-89221644D01* X114008600Y-89402254D01* X110085000Y-89402254D01* X110085000Y-88779945D01* X110221644Y-88916589D01* X110402254Y-88991400D01* X110597746Y-88991400D01* X110778356Y-88916589D01* X110916589Y-88778356D01* X110991400Y-88597746D01* X110991400Y-88402254D01* X112008600Y-88402254D01* X112008600Y-88597746D01* X112083411Y-88778356D01* X112221644Y-88916589D01* X112402254Y-88991400D01* X112597746Y-88991400D01* X112778356Y-88916589D01* X112916589Y-88778356D01* X112991400Y-88597746D01* X112991400Y-88402254D01* X114008600Y-88402254D01* X114008600Y-88597746D01* X114083411Y-88778356D01* X114221644Y-88916589D01* X114402254Y-88991400D01* X114597746Y-88991400D01* X114778356Y-88916589D01* X114916589Y-88778356D01* X114991400Y-88597746D01* X114991400Y-88402254D01* X116008600Y-88402254D01* X116008600Y-88597746D01* X116083411Y-88778356D01* X116221644Y-88916589D01* X116402254Y-88991400D01* X116597746Y-88991400D01* X116778356Y-88916589D01* X116916589Y-88778356D01* X116991400Y-88597746D01* X116991400Y-88402254D01* X119008600Y-88402254D01* X119008600Y-88597746D01* X119083411Y-88778356D01* X119221644Y-88916589D01* X119402254Y-88991400D01* X119597746Y-88991400D01* X119778356Y-88916589D01* X119916589Y-88778356D01* X119991400Y-88597746D01* X119991400Y-88402254D01* X119916589Y-88221644D01* X119778356Y-88083411D01* X119597746Y-88008600D01* X119402254Y-88008600D01* X119221644Y-88083411D01* X119083411Y-88221644D01* X119008600Y-88402254D01* X116991400Y-88402254D01* X116916589Y-88221644D01* X116778356Y-88083411D01* X116597746Y-88008600D01* X116402254Y-88008600D01* X116221644Y-88083411D01* X116083411Y-88221644D01* X116008600Y-88402254D01* X114991400Y-88402254D01* X114916589Y-88221644D01* X114778356Y-88083411D01* X114597746Y-88008600D01* X114402254Y-88008600D01* X114221644Y-88083411D01* X114083411Y-88221644D01* X114008600Y-88402254D01* X112991400Y-88402254D01* X112916589Y-88221644D01* X112778356Y-88083411D01* X112597746Y-88008600D01* X112402254Y-88008600D01* X112221644Y-88083411D01* X112083411Y-88221644D01* X112008600Y-88402254D01* X110991400Y-88402254D01* X110916589Y-88221644D01* X110778356Y-88083411D01* X110597746Y-88008600D01* X110402254Y-88008600D01* X110221644Y-88083411D01* X110085000Y-88220055D01* X110085000Y-87785000D01* X113090055Y-87785000D01* X113221644Y-87916589D01* X113221644Y-87916589D01* G37* X113221644Y-87916589D02* X113402254Y-87991400D01* X113597746Y-87991400D01* X113778356Y-87916589D01* X113909945Y-87785000D01* X114090055Y-87785000D01* X114221644Y-87916589D01* X114402254Y-87991400D01* X114597746Y-87991400D01* X114778356Y-87916589D01* X114909945Y-87785000D01* X115090055Y-87785000D01* X115221644Y-87916589D01* X115402254Y-87991400D01* X115597746Y-87991400D01* X115778356Y-87916589D01* X115909945Y-87785000D01* X116090055Y-87785000D01* X116221644Y-87916589D01* X116402254Y-87991400D01* X116597746Y-87991400D01* X116778356Y-87916589D01* X116909945Y-87785000D01* X117090055Y-87785000D01* X117221644Y-87916589D01* X117402254Y-87991400D01* X117597746Y-87991400D01* X117778356Y-87916589D01* X117909945Y-87785000D01* X120664792Y-87785000D01* X121092424Y-88212632D01* X121083411Y-88221644D01* X121008600Y-88402254D01* X121008600Y-88597746D01* X121083411Y-88778356D01* X121221644Y-88916589D01* X121402254Y-88991400D01* X121597746Y-88991400D01* X121778356Y-88916589D01* X121787369Y-88907577D01* X122092424Y-89212632D01* X122083411Y-89221644D01* X122008600Y-89402254D01* X122008600Y-89597746D01* X122083411Y-89778356D01* X122221644Y-89916589D01* X122402254Y-89991400D01* X122597746Y-89991400D01* X122778356Y-89916589D01* X122787369Y-89907577D01* X123092424Y-90212632D01* X123083411Y-90221644D01* X123008600Y-90402254D01* X123008600Y-90597746D01* X123083411Y-90778356D01* X123221644Y-90916589D01* X123402254Y-90991400D01* X123597746Y-90991400D01* X123778356Y-90916589D01* X123787369Y-90907577D01* X124092424Y-91212632D01* X124083411Y-91221644D01* X124008600Y-91402254D01* X124008600Y-91597746D01* X124083411Y-91778356D01* X124221644Y-91916589D01* X124402254Y-91991400D01* X124597746Y-91991400D01* X124778356Y-91916589D01* X124787369Y-91907577D01* X125092424Y-92212632D01* X125083411Y-92221644D01* X125008600Y-92402254D01* X125008600Y-92597746D01* X125083411Y-92778356D01* X125221644Y-92916589D01* X125402254Y-92991400D01* X125597746Y-92991400D01* X125778356Y-92916589D01* X125787369Y-92907577D01* X126092424Y-93212632D01* X126083411Y-93221644D01* X126008600Y-93402254D01* X126008600Y-93597746D01* X126083411Y-93778356D01* X126221644Y-93916589D01* X126402254Y-93991400D01* X126597746Y-93991400D01* X126778356Y-93916589D01* X126787369Y-93907577D01* X129379792Y-96500000D01* X127964792Y-97915000D01* X124535208Y-97915000D01* X120607548Y-93987340D01* X120778356Y-93916589D01* X120916589Y-93778356D01* X120991400Y-93597746D01* X120991400Y-93402254D01* X122008600Y-93402254D01* X122008600Y-93597746D01* X122083411Y-93778356D01* X122221644Y-93916589D01* X122402254Y-93991400D01* X122597746Y-93991400D01* X122778356Y-93916589D01* X122916589Y-93778356D01* X122991400Y-93597746D01* X122991400Y-93402254D01* X123008600Y-93402254D01* X123008600Y-93597746D01* X123083411Y-93778356D01* X123221644Y-93916589D01* X123402254Y-93991400D01* X123597746Y-93991400D01* X123778356Y-93916589D01* X123916589Y-93778356D01* X123991400Y-93597746D01* X123991400Y-93402254D01* X124008600Y-93402254D01* X124008600Y-93597746D01* X124083411Y-93778356D01* X124221644Y-93916589D01* X124402254Y-93991400D01* X124597746Y-93991400D01* X124778356Y-93916589D01* X124916589Y-93778356D01* X124991400Y-93597746D01* X124991400Y-93402254D01* X124916589Y-93221644D01* X124778356Y-93083411D01* X124597746Y-93008600D01* X124402254Y-93008600D01* X124221644Y-93083411D01* X124083411Y-93221644D01* X124008600Y-93402254D01* X123991400Y-93402254D01* X123916589Y-93221644D01* X123778356Y-93083411D01* X123597746Y-93008600D01* X123402254Y-93008600D01* X123221644Y-93083411D01* X123083411Y-93221644D01* X123008600Y-93402254D01* X122991400Y-93402254D01* X122916589Y-93221644D01* X122778356Y-93083411D01* X122597746Y-93008600D01* X122402254Y-93008600D01* X122221644Y-93083411D01* X122083411Y-93221644D01* X122008600Y-93402254D01* X120991400Y-93402254D01* X120916589Y-93221644D01* X120778356Y-93083411D01* X120597746Y-93008600D01* X120402254Y-93008600D01* X120221644Y-93083411D01* X120083411Y-93221644D01* X120012660Y-93392452D01* X119022462Y-92402254D01* X120008600Y-92402254D01* X120008600Y-92597746D01* X120083411Y-92778356D01* X120221644Y-92916589D01* X120402254Y-92991400D01* X120597746Y-92991400D01* X120778356Y-92916589D01* X120916589Y-92778356D01* X120991400Y-92597746D01* X120991400Y-92402254D01* X122008600Y-92402254D01* X122008600Y-92597746D01* X122083411Y-92778356D01* X122221644Y-92916589D01* X122402254Y-92991400D01* X122597746Y-92991400D01* X122778356Y-92916589D01* X122916589Y-92778356D01* X122991400Y-92597746D01* X122991400Y-92402254D01* X123008600Y-92402254D01* X123008600Y-92597746D01* X123083411Y-92778356D01* X123221644Y-92916589D01* X123402254Y-92991400D01* X123597746Y-92991400D01* X123778356Y-92916589D01* X123916589Y-92778356D01* X123991400Y-92597746D01* X123991400Y-92402254D01* X123916589Y-92221644D01* X123778356Y-92083411D01* X123597746Y-92008600D01* X123402254Y-92008600D01* X123221644Y-92083411D01* X123083411Y-92221644D01* X123008600Y-92402254D01* X122991400Y-92402254D01* X122916589Y-92221644D01* X122778356Y-92083411D01* X122597746Y-92008600D01* X122402254Y-92008600D01* X122221644Y-92083411D01* X122083411Y-92221644D01* X122008600Y-92402254D01* X120991400Y-92402254D01* X120916589Y-92221644D01* X120778356Y-92083411D01* X120597746Y-92008600D01* X120402254Y-92008600D01* X120221644Y-92083411D01* X120083411Y-92221644D01* X120008600Y-92402254D01* X119022462Y-92402254D01* X118607548Y-91987340D01* X118778356Y-91916589D01* X118916589Y-91778356D01* X118991400Y-91597746D01* X118991400Y-91402254D01* X119008600Y-91402254D01* X119008600Y-91597746D01* X119083411Y-91778356D01* X119221644Y-91916589D01* X119402254Y-91991400D01* X119597746Y-91991400D01* X119778356Y-91916589D01* X119916589Y-91778356D01* X119991400Y-91597746D01* X119991400Y-91402254D01* X120008600Y-91402254D01* X120008600Y-91597746D01* X120083411Y-91778356D01* X120221644Y-91916589D01* X120402254Y-91991400D01* X120597746Y-91991400D01* X120778356Y-91916589D01* X120916589Y-91778356D01* X120991400Y-91597746D01* X120991400Y-91402254D01* X121008600Y-91402254D01* X121008600Y-91597746D01* X121083411Y-91778356D01* X121221644Y-91916589D01* X121402254Y-91991400D01* X121597746Y-91991400D01* X121778356Y-91916589D01* X121916589Y-91778356D01* X121991400Y-91597746D01* X121991400Y-91402254D01* X122008600Y-91402254D01* X122008600Y-91597746D01* X122083411Y-91778356D01* X122221644Y-91916589D01* X122402254Y-91991400D01* X122597746Y-91991400D01* X122778356Y-91916589D01* X122916589Y-91778356D01* X122991400Y-91597746D01* X122991400Y-91402254D01* X122916589Y-91221644D01* X122778356Y-91083411D01* X122597746Y-91008600D01* X122402254Y-91008600D01* X122221644Y-91083411D01* X122083411Y-91221644D01* X122008600Y-91402254D01* X121991400Y-91402254D01* X121916589Y-91221644D01* X121778356Y-91083411D01* X121597746Y-91008600D01* X121402254Y-91008600D01* X121221644Y-91083411D01* X121083411Y-91221644D01* X121008600Y-91402254D01* X120991400Y-91402254D01* X120916589Y-91221644D01* X120778356Y-91083411D01* X120597746Y-91008600D01* X120402254Y-91008600D01* X120221644Y-91083411D01* X120083411Y-91221644D01* X120008600Y-91402254D01* X119991400Y-91402254D01* X119916589Y-91221644D01* X119778356Y-91083411D01* X119597746Y-91008600D01* X119402254Y-91008600D01* X119221644Y-91083411D01* X119083411Y-91221644D01* X119008600Y-91402254D01* X118991400Y-91402254D01* X118916589Y-91221644D01* X118778356Y-91083411D01* X118597746Y-91008600D01* X118402254Y-91008600D01* X118221644Y-91083411D01* X118083411Y-91221644D01* X118008600Y-91402254D01* X118008600Y-91597746D01* X118083411Y-91778356D01* X118221644Y-91916589D01* X118225588Y-91918223D01* X117761223Y-91923686D01* X117778356Y-91916589D01* X117916589Y-91778356D01* X117991400Y-91597746D01* X117991400Y-91402254D01* X117916589Y-91221644D01* X117778356Y-91083411D01* X117597746Y-91008600D01* X117402254Y-91008600D01* X117221644Y-91083411D01* X117083411Y-91221644D01* X117008600Y-91402254D01* X117008600Y-91597746D01* X117083411Y-91778356D01* X117221644Y-91916589D01* X117253206Y-91929662D01* X116731990Y-91935794D01* X116778356Y-91916589D01* X116916589Y-91778356D01* X116991400Y-91597746D01* X116991400Y-91402254D01* X116916589Y-91221644D01* X116778356Y-91083411D01* X116597746Y-91008600D01* X116402254Y-91008600D01* X116221644Y-91083411D01* X116083411Y-91221644D01* X116008600Y-91402254D01* X116008600Y-91597746D01* X116083411Y-91778356D01* X116221644Y-91916589D01* X116280824Y-91941102D01* X115702743Y-91947903D01* X115778356Y-91916583D01* X115916589Y-91778350D01* X115991400Y-91597740D01* X115991400Y-91402248D01* X115916589Y-91221638D01* X115778356Y-91083405D01* X115597746Y-91008594D01* X115402254Y-91008594D01* X115221644Y-91083405D01* X115083411Y-91221638D01* X115008600Y-91402248D01* X115008600Y-91597740D01* X115083411Y-91778350D01* X115221644Y-91916583D01* X115308456Y-91952542D01* X114673525Y-91960011D01* X114778356Y-91916589D01* X114916589Y-91778356D01* X114991400Y-91597746D01* X114991400Y-91402254D01* X114916589Y-91221644D01* X114778356Y-91083411D01* X114597746Y-91008600D01* X114402254Y-91008600D01* X114221644Y-91083411D01* X114083411Y-91221644D01* X114008600Y-91402254D01* X114008600Y-91597746D01* X114083411Y-91778356D01* X114221644Y-91916589D01* X114336060Y-91963982D01* X113644292Y-91972120D01* X113778356Y-91916589D01* X113916589Y-91778356D01* X113991400Y-91597746D01* X113991400Y-91402254D01* X113916589Y-91221644D01* X113778356Y-91083411D01* X113597746Y-91008600D01* X113402254Y-91008600D01* X113221644Y-91083411D01* X113083411Y-91221644D01* X113008600Y-91402254D01* X113008600Y-91597746D01* X113083411Y-91778356D01* X113221644Y-91916589D01* X113363678Y-91975421D01* X112615059Y-91984229D01* X112778356Y-91916589D01* X112916589Y-91778356D01* X112991400Y-91597746D01* X112991400Y-91402254D01* X112916589Y-91221644D01* X112778356Y-91083411D01* X112597746Y-91008600D01* X112402254Y-91008600D01* X112221644Y-91083411D01* X112083411Y-91221644D01* X112008600Y-91402254D01* X112008600Y-91597746D01* X112083411Y-91778356D01* X112221644Y-91916589D01* X112391296Y-91986861D01* X110085000Y-92013994D01* X110085000Y-91779945D01* X110221644Y-91916589D01* X110402254Y-91991400D01* X110597746Y-91991400D01* X110778356Y-91916589D01* X110916589Y-91778356D01* X110991400Y-91597746D01* X110991400Y-91402254D01* X111008600Y-91402254D01* X111008600Y-91597746D01* X111083411Y-91778356D01* X111221644Y-91916589D01* X111402254Y-91991400D01* X111597746Y-91991400D01* X111778356Y-91916589D01* X111916589Y-91778356D01* X111991400Y-91597746D01* X111991400Y-91402254D01* X111916589Y-91221644D01* X111778356Y-91083411D01* X111597746Y-91008600D01* X111402254Y-91008600D01* X111221644Y-91083411D01* X111083411Y-91221644D01* X111008600Y-91402254D01* X110991400Y-91402254D01* X110916589Y-91221644D01* X110778356Y-91083411D01* X110597746Y-91008600D01* X110402254Y-91008600D01* X110221644Y-91083411D01* X110085000Y-91220055D01* X110085000Y-90779945D01* X110221644Y-90916589D01* X110402254Y-90991400D01* X110597746Y-90991400D01* X110778356Y-90916589D01* X110916589Y-90778356D01* X110991400Y-90597746D01* X110991400Y-90402254D01* X111008600Y-90402254D01* X111008600Y-90597746D01* X111083411Y-90778356D01* X111221644Y-90916589D01* X111402254Y-90991400D01* X111597746Y-90991400D01* X111778356Y-90916589D01* X111916589Y-90778356D01* X111991400Y-90597746D01* X111991400Y-90402254D01* X113008600Y-90402254D01* X113008600Y-90597746D01* X113083411Y-90778356D01* X113221644Y-90916589D01* X113402254Y-90991400D01* X113597746Y-90991400D01* X113778356Y-90916589D01* X113916589Y-90778356D01* X113991400Y-90597746D01* X113991400Y-90402254D01* X115008600Y-90402254D01* X115008600Y-90597746D01* X115083411Y-90778356D01* X115221644Y-90916589D01* X115402254Y-90991400D01* X115597746Y-90991400D01* X115778356Y-90916589D01* X115916589Y-90778356D01* X115991400Y-90597746D01* X115991400Y-90402254D01* X116008600Y-90402254D01* X116008600Y-90597746D01* X116083411Y-90778356D01* X116221644Y-90916589D01* X116402254Y-90991400D01* X116597746Y-90991400D01* X116778356Y-90916589D01* X116916589Y-90778356D01* X116991400Y-90597746D01* X116991400Y-90402254D01* X119008600Y-90402254D01* X119008600Y-90597746D01* X119083411Y-90778356D01* X119221644Y-90916589D01* X119402254Y-90991400D01* X119597746Y-90991400D01* X119778356Y-90916589D01* X119916589Y-90778356D01* X119991400Y-90597746D01* X119991400Y-90402254D01* X120008600Y-90402254D01* X120008600Y-90597746D01* X120083411Y-90778356D01* X120221644Y-90916589D01* X120402254Y-90991400D01* X120597746Y-90991400D01* X120778356Y-90916589D01* X120916589Y-90778356D01* X120991400Y-90597746D01* X120991400Y-90402254D01* X121008600Y-90402254D01* X121008600Y-90597746D01* X121083411Y-90778356D01* X121221644Y-90916589D01* X121402254Y-90991400D01* X121597746Y-90991400D01* X121778356Y-90916589D01* X121916589Y-90778356D01* X121991400Y-90597746D01* X121991400Y-90402254D01* X121916589Y-90221644D01* X121778356Y-90083411D01* X121597746Y-90008600D01* X121402254Y-90008600D01* X121221644Y-90083411D01* X121083411Y-90221644D01* X121008600Y-90402254D01* X120991400Y-90402254D01* X120916589Y-90221644D01* X120778356Y-90083411D01* X120597746Y-90008600D01* X120402254Y-90008600D01* X120221644Y-90083411D01* X120083411Y-90221644D01* X120008600Y-90402254D01* X119991400Y-90402254D01* X119916589Y-90221644D01* X119778356Y-90083411D01* X119597746Y-90008600D01* X119402254Y-90008600D01* X119221644Y-90083411D01* X119083411Y-90221644D01* X119008600Y-90402254D01* X116991400Y-90402254D01* X116916589Y-90221644D01* X116778356Y-90083411D01* X116597746Y-90008600D01* X116402254Y-90008600D01* X116221644Y-90083411D01* X116083411Y-90221644D01* X116008600Y-90402254D01* X115991400Y-90402254D01* X115916589Y-90221644D01* X115778356Y-90083411D01* X115597746Y-90008600D01* X115402254Y-90008600D01* X115221644Y-90083411D01* X115083411Y-90221644D01* X115008600Y-90402254D01* X113991400Y-90402254D01* X113916589Y-90221644D01* X113778356Y-90083411D01* X113597746Y-90008600D01* X113402254Y-90008600D01* X113221644Y-90083411D01* X113083411Y-90221644D01* X113008600Y-90402254D01* X111991400Y-90402254D01* X111916589Y-90221644D01* X111778356Y-90083411D01* X111597746Y-90008600D01* X111402254Y-90008600D01* X111221644Y-90083411D01* X111083411Y-90221644D01* X111008600Y-90402254D01* X110991400Y-90402254D01* X110916589Y-90221644D01* X110778356Y-90083411D01* X110597746Y-90008600D01* X110402254Y-90008600D01* X110221644Y-90083411D01* X110085000Y-90220055D01* X110085000Y-89402254D01* X114008600Y-89402254D01* X114008600Y-89597746D01* X114083411Y-89778356D01* X114221644Y-89916589D01* X114402254Y-89991400D01* X114597746Y-89991400D01* X114778356Y-89916589D01* X114916589Y-89778356D01* X114991400Y-89597746D01* X114991400Y-89402254D01* X118008600Y-89402254D01* X118008600Y-89597746D01* X118083411Y-89778356D01* X118221644Y-89916589D01* X118402254Y-89991400D01* X118597746Y-89991400D01* X118778356Y-89916589D01* X118916589Y-89778356D01* X118991400Y-89597746D01* X118991400Y-89402254D01* X119008600Y-89402254D01* X119008600Y-89597746D01* X119083411Y-89778356D01* X119221644Y-89916589D01* X119402254Y-89991400D01* X119597746Y-89991400D01* X119778356Y-89916589D01* X119916589Y-89778356D01* X119991400Y-89597746D01* X119991400Y-89402254D01* X120008600Y-89402254D01* X120008600Y-89597746D01* X120083411Y-89778356D01* X120221644Y-89916589D01* X120402254Y-89991400D01* X120597746Y-89991400D01* X120778356Y-89916589D01* X120916589Y-89778356D01* X120991400Y-89597746D01* X120991400Y-89402254D01* X121008600Y-89402254D01* X121008600Y-89597746D01* X121083411Y-89778356D01* X121221644Y-89916589D01* X121402254Y-89991400D01* X121597746Y-89991400D01* X121778356Y-89916589D01* X121916589Y-89778356D01* X121991400Y-89597746D01* X121991400Y-89402254D01* X121916589Y-89221644D01* X121778356Y-89083411D01* X121597746Y-89008600D01* X121402254Y-89008600D01* X121221644Y-89083411D01* X121083411Y-89221644D01* X121008600Y-89402254D01* X120991400Y-89402254D01* X120916589Y-89221644D01* X120778356Y-89083411D01* X120597746Y-89008600D01* X120402254Y-89008600D01* X120221644Y-89083411D01* X120083411Y-89221644D01* X120008600Y-89402254D01* X119991400Y-89402254D01* X119916589Y-89221644D01* X119778356Y-89083411D01* X119597746Y-89008600D01* X119402254Y-89008600D01* X119221644Y-89083411D01* X119083411Y-89221644D01* X119008600Y-89402254D01* X118991400Y-89402254D01* X118916589Y-89221644D01* X118778356Y-89083411D01* X118597746Y-89008600D01* X118402254Y-89008600D01* X118221644Y-89083411D01* X118083411Y-89221644D01* X118008600Y-89402254D01* X114991400Y-89402254D01* X114916589Y-89221644D01* X114778356Y-89083411D01* X114597746Y-89008600D01* X114402254Y-89008600D01* X114221644Y-89083411D01* X114083411Y-89221644D01* X114008600Y-89402254D01* X110085000Y-89402254D01* X110085000Y-88779945D01* X110221644Y-88916589D01* X110402254Y-88991400D01* X110597746Y-88991400D01* X110778356Y-88916589D01* X110916589Y-88778356D01* X110991400Y-88597746D01* X110991400Y-88402254D01* X112008600Y-88402254D01* X112008600Y-88597746D01* X112083411Y-88778356D01* X112221644Y-88916589D01* X112402254Y-88991400D01* X112597746Y-88991400D01* X112778356Y-88916589D01* X112916589Y-88778356D01* X112991400Y-88597746D01* X112991400Y-88402254D01* X114008600Y-88402254D01* X114008600Y-88597746D01* X114083411Y-88778356D01* X114221644Y-88916589D01* X114402254Y-88991400D01* X114597746Y-88991400D01* X114778356Y-88916589D01* X114916589Y-88778356D01* X114991400Y-88597746D01* X114991400Y-88402254D01* X116008600Y-88402254D01* X116008600Y-88597746D01* X116083411Y-88778356D01* X116221644Y-88916589D01* X116402254Y-88991400D01* X116597746Y-88991400D01* X116778356Y-88916589D01* X116916589Y-88778356D01* X116991400Y-88597746D01* X116991400Y-88402254D01* X119008600Y-88402254D01* X119008600Y-88597746D01* X119083411Y-88778356D01* X119221644Y-88916589D01* X119402254Y-88991400D01* X119597746Y-88991400D01* X119778356Y-88916589D01* X119916589Y-88778356D01* X119991400Y-88597746D01* X119991400Y-88402254D01* X119916589Y-88221644D01* X119778356Y-88083411D01* X119597746Y-88008600D01* X119402254Y-88008600D01* X119221644Y-88083411D01* X119083411Y-88221644D01* X119008600Y-88402254D01* X116991400Y-88402254D01* X116916589Y-88221644D01* X116778356Y-88083411D01* X116597746Y-88008600D01* X116402254Y-88008600D01* X116221644Y-88083411D01* X116083411Y-88221644D01* X116008600Y-88402254D01* X114991400Y-88402254D01* X114916589Y-88221644D01* X114778356Y-88083411D01* X114597746Y-88008600D01* X114402254Y-88008600D01* X114221644Y-88083411D01* X114083411Y-88221644D01* X114008600Y-88402254D01* X112991400Y-88402254D01* X112916589Y-88221644D01* X112778356Y-88083411D01* X112597746Y-88008600D01* X112402254Y-88008600D01* X112221644Y-88083411D01* X112083411Y-88221644D01* X112008600Y-88402254D01* X110991400Y-88402254D01* X110916589Y-88221644D01* X110778356Y-88083411D01* X110597746Y-88008600D01* X110402254Y-88008600D01* X110221644Y-88083411D01* X110085000Y-88220055D01* X110085000Y-87785000D01* X113090055Y-87785000D01* X113221644Y-87916589D01* D25* G04 #@! TO.N,/imagers/CAM1_3V3* G36* X210594800Y-94373000D02* X190127000Y-94373000D01* X190127000Y-92943244D01* X190204739Y-93130923D01* X190369077Y-93295261D01* X190583795Y-93384200D01* X190816205Y-93384200D01* X191030923Y-93295261D01* X191195261Y-93130923D01* X191284200Y-92916205D01* X191284200Y-92683795D01* X191195261Y-92469077D01* X191030923Y-92304739D01* X191019482Y-92300000D01* X191030923Y-92295261D01* X191042389Y-92283795D01* X192515800Y-92283795D01* X192515800Y-92516205D01* X192604739Y-92730923D01* X192769077Y-92895261D01* X192983795Y-92984200D01* X193216205Y-92984200D01* X193430923Y-92895261D01* X193450000Y-92876184D01* X193469077Y-92895261D01* X193683795Y-92984200D01* X193916205Y-92984200D01* X194130923Y-92895261D01* X194295261Y-92730923D01* X194384200Y-92516205D01* X194384200Y-92283795D01* X194512200Y-92283795D01* X194512200Y-92516205D01* X194601139Y-92730923D01* X194765477Y-92895261D01* X194980195Y-92984200D01* X195212605Y-92984200D01* X195427323Y-92895261D01* X195452000Y-92870584D01* X195476677Y-92895261D01* X195691395Y-92984200D01* X195923805Y-92984200D01* X196138523Y-92895261D01* X196302861Y-92730923D01* X196391800Y-92516205D01* X196391800Y-92283795D01* X196544200Y-92283795D01* X196544200Y-92516205D01* X196633139Y-92730923D01* X196797477Y-92895261D01* X197012195Y-92984200D01* X197244605Y-92984200D01* X197459323Y-92895261D01* X197484000Y-92870584D01* X197508677Y-92895261D01* X197723395Y-92984200D01* X197955805Y-92984200D01* X198170523Y-92895261D01* X198334861Y-92730923D01* X198423800Y-92516205D01* X198423800Y-92283795D01* X198576200Y-92283795D01* X198576200Y-92516205D01* X198665139Y-92730923D01* X198829477Y-92895261D01* X199044195Y-92984200D01* X199276605Y-92984200D01* X199491323Y-92895261D01* X199516000Y-92870584D01* X199540677Y-92895261D01* X199755395Y-92984200D01* X199987805Y-92984200D01* X200202523Y-92895261D01* X200366861Y-92730923D01* X200455800Y-92516205D01* X200455800Y-92283795D01* X200608200Y-92283795D01* X200608200Y-92516205D01* X200697139Y-92730923D01* X200861477Y-92895261D01* X201076195Y-92984200D01* X201308605Y-92984200D01* X201523323Y-92895261D01* X201548000Y-92870584D01* X201572677Y-92895261D01* X201787395Y-92984200D01* X202019805Y-92984200D01* X202234523Y-92895261D01* X202398861Y-92730923D01* X202487800Y-92516205D01* X202487800Y-92283795D01* X202615800Y-92283795D01* X202615800Y-92516205D01* X202704739Y-92730923D01* X202869077Y-92895261D01* X203083795Y-92984200D01* X203316205Y-92984200D01* X203530923Y-92895261D01* X203550000Y-92876184D01* X203569077Y-92895261D01* X203783795Y-92984200D01* X204016205Y-92984200D01* X204230923Y-92895261D01* X204395261Y-92730923D01* X204484200Y-92516205D01* X204484200Y-92283795D01* X204395261Y-92069077D01* X204230923Y-91904739D01* X204016205Y-91815800D01* X203783795Y-91815800D01* X203569077Y-91904739D01* X203550000Y-91923816D01* X203530923Y-91904739D01* X203316205Y-91815800D01* X203083795Y-91815800D01* X202869077Y-91904739D01* X202704739Y-92069077D01* X202615800Y-92283795D01* X202487800Y-92283795D01* X202398861Y-92069077D01* X202234523Y-91904739D01* X202019805Y-91815800D01* X201787395Y-91815800D01* X201572677Y-91904739D01* X201548000Y-91929416D01* X201523323Y-91904739D01* X201308605Y-91815800D01* X201076195Y-91815800D01* X200861477Y-91904739D01* X200697139Y-92069077D01* X200608200Y-92283795D01* X200455800Y-92283795D01* X200366861Y-92069077D01* X200202523Y-91904739D01* X199987805Y-91815800D01* X199755395Y-91815800D01* X199540677Y-91904739D01* X199516000Y-91929416D01* X199491323Y-91904739D01* X199276605Y-91815800D01* X199044195Y-91815800D01* X198829477Y-91904739D01* X198665139Y-92069077D01* X198576200Y-92283795D01* X198423800Y-92283795D01* X198334861Y-92069077D01* X198170523Y-91904739D01* X197955805Y-91815800D01* X197723395Y-91815800D01* X197508677Y-91904739D01* X197484000Y-91929416D01* X197459323Y-91904739D01* X197244605Y-91815800D01* X197012195Y-91815800D01* X196797477Y-91904739D01* X196633139Y-92069077D01* X196544200Y-92283795D01* X196391800Y-92283795D01* X196302861Y-92069077D01* X196138523Y-91904739D01* X195923805Y-91815800D01* X195691395Y-91815800D01* X195476677Y-91904739D01* X195452000Y-91929416D01* X195427323Y-91904739D01* X195212605Y-91815800D01* X194980195Y-91815800D01* X194765477Y-91904739D01* X194601139Y-92069077D01* X194512200Y-92283795D01* X194384200Y-92283795D01* X194295261Y-92069077D01* X194130923Y-91904739D01* X193916205Y-91815800D01* X193683795Y-91815800D01* X193469077Y-91904739D01* X193450000Y-91923816D01* X193430923Y-91904739D01* X193216205Y-91815800D01* X192983795Y-91815800D01* X192769077Y-91904739D01* X192604739Y-92069077D01* X192515800Y-92283795D01* X191042389Y-92283795D01* X191195261Y-92130923D01* X191284200Y-91916205D01* X191284200Y-91683795D01* X191201358Y-91483795D01* X205715800Y-91483795D01* X205715800Y-91716205D01* X205804739Y-91930923D01* X205969077Y-92095261D01* X206183795Y-92184200D01* X206416205Y-92184200D01* X206630923Y-92095261D01* X206795261Y-91930923D01* X206884200Y-91716205D01* X206884200Y-91483795D01* X206795261Y-91269077D01* X206630923Y-91104739D01* X206416205Y-91015800D01* X206183795Y-91015800D01* X205969077Y-91104739D01* X205804739Y-91269077D01* X205715800Y-91483795D01* X191201358Y-91483795D01* X191195261Y-91469077D01* X191030923Y-91304739D01* X190816205Y-91215800D01* X190583795Y-91215800D01* X190369077Y-91304739D01* X190204739Y-91469077D01* X190127000Y-91656756D01* X190127000Y-87383795D01* X194215800Y-87383795D01* X194215800Y-87616205D01* X194304739Y-87830923D01* X194469077Y-87995261D01* X194683795Y-88084200D01* X194916205Y-88084200D01* X195130923Y-87995261D01* X195295261Y-87830923D01* X195384200Y-87616205D01* X195384200Y-87383795D01* X195515800Y-87383795D01* X195515800Y-87616205D01* X195604739Y-87830923D01* X195769077Y-87995261D01* X195983795Y-88084200D01* X196216205Y-88084200D01* X196430923Y-87995261D01* X196595261Y-87830923D01* X196684200Y-87616205D01* X196684200Y-87383795D01* X196595261Y-87169077D01* X196430923Y-87004739D01* X196216205Y-86915800D01* X195983795Y-86915800D01* X195769077Y-87004739D01* X195604739Y-87169077D01* X195515800Y-87383795D01* X195384200Y-87383795D01* X195295261Y-87169077D01* X195130923Y-87004739D01* X194916205Y-86915800D01* X194683795Y-86915800D01* X194469077Y-87004739D01* X194304739Y-87169077D01* X194215800Y-87383795D01* X190127000Y-87383795D01* X190127000Y-86643244D01* X190204739Y-86830923D01* X190369077Y-86995261D01* X190583795Y-87084200D01* X190816205Y-87084200D01* X191030923Y-86995261D01* X191195261Y-86830923D01* X191284200Y-86616205D01* X191284200Y-86383795D01* X191195261Y-86169077D01* X191030923Y-86004739D01* X190980360Y-85983795D01* X194215800Y-85983795D01* X194215800Y-86216205D01* X194304739Y-86430923D01* X194469077Y-86595261D01* X194683795Y-86684200D01* X194916205Y-86684200D01* X195130923Y-86595261D01* X195295261Y-86430923D01* X195384200Y-86216205D01* X195384200Y-85983795D01* X195295261Y-85769077D01* X195130923Y-85604739D01* X194916205Y-85515800D01* X194683795Y-85515800D01* X194469077Y-85604739D01* X194304739Y-85769077D01* X194215800Y-85983795D01* X190980360Y-85983795D01* X190898771Y-85950000D01* X191030923Y-85895261D01* X191195261Y-85730923D01* X191284200Y-85516205D01* X191284200Y-85367393D01* X203315800Y-85367393D01* X203315800Y-85599803D01* X203404739Y-85814521D01* X203569077Y-85978859D01* X203600317Y-85991799D01* X203569077Y-86004739D01* X203404739Y-86169077D01* X203315800Y-86383795D01* X203315800Y-86616205D01* X203404739Y-86830923D01* X203569077Y-86995261D01* X203580518Y-87000000D01* X203569077Y-87004739D01* X203404739Y-87169077D01* X203315800Y-87383795D01* X203315800Y-87616205D01* X203404739Y-87830923D01* X203569077Y-87995261D01* X203580518Y-88000000D01* X203569077Y-88004739D01* X203404739Y-88169077D01* X203315800Y-88383795D01* X203315800Y-88616205D01* X203404739Y-88830923D01* X203569077Y-88995261D01* X203580518Y-89000000D01* X203569077Y-89004739D01* X203404739Y-89169077D01* X203315800Y-89383795D01* X203315800Y-89616205D01* X203404739Y-89830923D01* X203569077Y-89995261D01* X203580518Y-90000000D01* X203569077Y-90004739D01* X203404739Y-90169077D01* X203315800Y-90383795D01* X203315800Y-90616205D01* X203404739Y-90830923D01* X203569077Y-90995261D01* X203783795Y-91084200D01* X204016205Y-91084200D01* X204230923Y-90995261D01* X204395261Y-90830923D01* X204484200Y-90616205D01* X204484200Y-90383795D01* X204395261Y-90169077D01* X204230923Y-90004739D01* X204219482Y-90000000D01* X204230923Y-89995261D01* X204395261Y-89830923D01* X204484200Y-89616205D01* X204484200Y-89383795D01* X204395261Y-89169077D01* X204230923Y-89004739D01* X204219482Y-89000000D01* X204230923Y-88995261D01* X204395261Y-88830923D01* X204484200Y-88616205D01* X204484200Y-88383795D01* X204395261Y-88169077D01* X204230923Y-88004739D01* X204219482Y-88000000D01* X204230923Y-87995261D01* X204395261Y-87830923D01* X204484200Y-87616205D01* X204484200Y-87420108D01* X206264800Y-87420108D01* X206264800Y-87839892D01* X206425444Y-88227723D01* X206722277Y-88524556D01* X207110108Y-88685200D01* X207529892Y-88685200D01* X207917723Y-88524556D01* X208214556Y-88227723D01* X208375200Y-87839892D01* X208375200Y-87420108D01* X208298609Y-87235200D01* X208639294Y-87235200D01* X209229273Y-86990823D01* X209680823Y-86539273D01* X209925200Y-85949294D01* X209925200Y-85310706D01* X209680823Y-84720727D01* X209229273Y-84269177D01* X208639294Y-84024800D01* X208000706Y-84024800D01* X207410727Y-84269177D01* X206959177Y-84720727D01* X206714800Y-85310706D01* X206714800Y-85949294D01* X206959177Y-86539273D01* X207028505Y-86608601D01* X206722277Y-86735444D01* X206425444Y-87032277D01* X206264800Y-87420108D01* X204484200Y-87420108D01* X204484200Y-87383795D01* X204395261Y-87169077D01* X204230923Y-87004739D01* X204219482Y-87000000D01* X204230923Y-86995261D01* X204395261Y-86830923D01* X204484200Y-86616205D01* X204484200Y-86383795D01* X204395261Y-86169077D01* X204230923Y-86004739D01* X204199683Y-85991799D01* X204230923Y-85978859D01* X204395261Y-85814521D01* X204484200Y-85599803D01* X204484200Y-85367393D01* X204395261Y-85152675D01* X204230923Y-84988337D01* X204016205Y-84899398D01* X203783795Y-84899398D01* X203569077Y-84988337D01* X203404739Y-85152675D01* X203315800Y-85367393D01* X191284200Y-85367393D01* X191284200Y-85283795D01* X191195261Y-85069077D01* X191076184Y-84950000D01* X191195261Y-84830923D01* X191284200Y-84616205D01* X191284200Y-84383795D01* X191195261Y-84169077D01* X191030923Y-84004739D01* X190816205Y-83915800D01* X190583795Y-83915800D01* X190369077Y-84004739D01* X190262966Y-84110850D01* X190375200Y-83839892D01* X190375200Y-83420108D01* X190360159Y-83383795D01* X205715800Y-83383795D01* X205715800Y-83616205D01* X205804739Y-83830923D01* X205923816Y-83950000D01* X205804739Y-84069077D01* X205715800Y-84283795D01* X205715800Y-84516205D01* X205804739Y-84730923D01* X205969077Y-84895261D01* X206183795Y-84984200D01* X206416205Y-84984200D01* X206630923Y-84895261D01* X206795261Y-84730923D01* X206884200Y-84516205D01* X206884200Y-84283795D01* X206795261Y-84069077D01* X206676184Y-83950000D01* X206795261Y-83830923D01* X206884200Y-83616205D01* X206884200Y-83383795D01* X206795261Y-83169077D01* X206630923Y-83004739D01* X206416205Y-82915800D01* X206183795Y-82915800D01* X205969077Y-83004739D01* X205804739Y-83169077D01* X205715800Y-83383795D01* X190360159Y-83383795D01* X190214556Y-83032277D01* X190127000Y-82944721D01* X190127000Y-82253184D01* X190269077Y-82395261D01* X190483795Y-82484200D01* X190716205Y-82484200D01* X190930923Y-82395261D01* X191095261Y-82230923D01* X191184200Y-82016205D01* X191184200Y-81783795D01* X191095261Y-81569077D01* X190930923Y-81404739D01* X190716205Y-81315800D01* X190483795Y-81315800D01* X190269077Y-81404739D01* X190127000Y-81546816D01* X190127000Y-81283795D01* X205715800Y-81283795D01* X205715800Y-81516205D01* X205804739Y-81730923D01* X205969077Y-81895261D01* X206183795Y-81984200D01* X206416205Y-81984200D01* X206630923Y-81895261D01* X206795261Y-81730923D01* X206884200Y-81516205D01* X206884200Y-81283795D01* X206795261Y-81069077D01* X206630923Y-80904739D01* X206416205Y-80815800D01* X206183795Y-80815800D01* X205969077Y-80904739D01* X205804739Y-81069077D01* X205715800Y-81283795D01* X190127000Y-81283795D01* X190127000Y-79083795D01* X192315800Y-79083795D01* X192315800Y-79316205D01* X192404739Y-79530923D01* X192569077Y-79695261D01* X192783795Y-79784200D01* X193016205Y-79784200D01* X193230923Y-79695261D01* X193395261Y-79530923D01* X193399459Y-79520789D01* X193403891Y-79531489D01* X193568511Y-79696109D01* X193783596Y-79785200D01* X194016404Y-79785200D01* X194231489Y-79696109D01* X194396109Y-79531489D01* X194450541Y-79400078D01* X194504739Y-79530923D01* X194669077Y-79695261D01* X194883795Y-79784200D01* X195116205Y-79784200D01* X195330923Y-79695261D01* X195450000Y-79576184D01* X195569077Y-79695261D01* X195783795Y-79784200D01* X196016205Y-79784200D01* X196230923Y-79695261D01* X196395261Y-79530923D01* X196450000Y-79398771D01* X196504739Y-79530923D01* X196669077Y-79695261D01* X196883795Y-79784200D01* X197116205Y-79784200D01* X197330923Y-79695261D01* X197450000Y-79576184D01* X197569077Y-79695261D01* X197783795Y-79784200D01* X198016205Y-79784200D01* X198230923Y-79695261D01* X198395261Y-79530923D01* X198484200Y-79316205D01* X198484200Y-79083795D01* X199415800Y-79083795D01* X199415800Y-79316205D01* X199504739Y-79530923D01* X199669077Y-79695261D01* X199883795Y-79784200D01* X200116205Y-79784200D01* X200330923Y-79695261D01* X200495261Y-79530923D01* X200500000Y-79519482D01* X200504739Y-79530923D01* X200669077Y-79695261D01* X200883795Y-79784200D01* X201116205Y-79784200D01* X201330923Y-79695261D01* X201495261Y-79530923D01* X201500000Y-79519482D01* X201504739Y-79530923D01* X201669077Y-79695261D01* X201883795Y-79784200D01* X202116205Y-79784200D01* X202330923Y-79695261D01* X202495261Y-79530923D01* X202550000Y-79398771D01* X202604739Y-79530923D01* X202769077Y-79695261D01* X202983795Y-79784200D01* X203216205Y-79784200D01* X203430923Y-79695261D01* X203595261Y-79530923D01* X203600000Y-79519482D01* X203604739Y-79530923D01* X203769077Y-79695261D01* X203983795Y-79784200D01* X204216205Y-79784200D01* X204430923Y-79695261D01* X204595261Y-79530923D01* X204684200Y-79316205D01* X204684200Y-79083795D01* X204595261Y-78869077D01* X204430923Y-78704739D01* X204216205Y-78615800D01* X203983795Y-78615800D01* X203769077Y-78704739D01* X203604739Y-78869077D01* X203600000Y-78880518D01* X203595261Y-78869077D01* X203430923Y-78704739D01* X203216205Y-78615800D01* X202983795Y-78615800D01* X202769077Y-78704739D01* X202604739Y-78869077D01* X202550000Y-79001229D01* X202495261Y-78869077D01* X202330923Y-78704739D01* X202116205Y-78615800D01* X201883795Y-78615800D01* X201669077Y-78704739D01* X201504739Y-78869077D01* X201500000Y-78880518D01* X201495261Y-78869077D01* X201330923Y-78704739D01* X201116205Y-78615800D01* X200883795Y-78615800D01* X200669077Y-78704739D01* X200504739Y-78869077D01* X200500000Y-78880518D01* X200495261Y-78869077D01* X200330923Y-78704739D01* X200116205Y-78615800D01* X199883795Y-78615800D01* X199669077Y-78704739D01* X199504739Y-78869077D01* X199415800Y-79083795D01* X198484200Y-79083795D01* X198395261Y-78869077D01* X198230923Y-78704739D01* X198016205Y-78615800D01* X197783795Y-78615800D01* X197569077Y-78704739D01* X197450000Y-78823816D01* X197330923Y-78704739D01* X197116205Y-78615800D01* X196883795Y-78615800D01* X196669077Y-78704739D01* X196504739Y-78869077D01* X196450000Y-79001229D01* X196395261Y-78869077D01* X196230923Y-78704739D01* X196016205Y-78615800D01* X195783795Y-78615800D01* X195569077Y-78704739D01* X195450000Y-78823816D01* X195330923Y-78704739D01* X195116205Y-78615800D01* X194883795Y-78615800D01* X194669077Y-78704739D01* X194504739Y-78869077D01* X194450541Y-78999922D01* X194396109Y-78868511D01* X194231489Y-78703891D01* X194016404Y-78614800D01* X193783596Y-78614800D01* X193568511Y-78703891D01* X193403891Y-78868511D01* X193399459Y-78879211D01* X193395261Y-78869077D01* X193230923Y-78704739D01* X193016205Y-78615800D01* X192783795Y-78615800D01* X192569077Y-78704739D01* X192404739Y-78869077D01* X192315800Y-79083795D01* X190127000Y-79083795D01* X190127000Y-77383795D01* X197315800Y-77383795D01* X197315800Y-77616205D01* X197404739Y-77830923D01* X197569077Y-77995261D01* X197783795Y-78084200D01* X198016205Y-78084200D01* X198230923Y-77995261D01* X198395261Y-77830923D01* X198484200Y-77616205D01* X198484200Y-77383795D01* X200515800Y-77383795D01* X200515800Y-77616205D01* X200604739Y-77830923D01* X200769077Y-77995261D01* X200983795Y-78084200D01* X201216205Y-78084200D01* X201430923Y-77995261D01* X201595261Y-77830923D01* X201684200Y-77616205D01* X201684200Y-77383795D01* X201595261Y-77169077D01* X201430923Y-77004739D01* X201216205Y-76915800D01* X200983795Y-76915800D01* X200769077Y-77004739D01* X200604739Y-77169077D01* X200515800Y-77383795D01* X198484200Y-77383795D01* X198395261Y-77169077D01* X198230923Y-77004739D01* X198016205Y-76915800D01* X197783795Y-76915800D01* X197569077Y-77004739D01* X197404739Y-77169077D01* X197315800Y-77383795D01* X190127000Y-77383795D01* X190127000Y-75127000D01* X210594801Y-75127000D01* X210594800Y-94373000D01* X210594800Y-94373000D01* G37* X210594800Y-94373000D02* X190127000Y-94373000D01* X190127000Y-92943244D01* X190204739Y-93130923D01* X190369077Y-93295261D01* X190583795Y-93384200D01* X190816205Y-93384200D01* X191030923Y-93295261D01* X191195261Y-93130923D01* X191284200Y-92916205D01* X191284200Y-92683795D01* X191195261Y-92469077D01* X191030923Y-92304739D01* X191019482Y-92300000D01* X191030923Y-92295261D01* X191042389Y-92283795D01* X192515800Y-92283795D01* X192515800Y-92516205D01* X192604739Y-92730923D01* X192769077Y-92895261D01* X192983795Y-92984200D01* X193216205Y-92984200D01* X193430923Y-92895261D01* X193450000Y-92876184D01* X193469077Y-92895261D01* X193683795Y-92984200D01* X193916205Y-92984200D01* X194130923Y-92895261D01* X194295261Y-92730923D01* X194384200Y-92516205D01* X194384200Y-92283795D01* X194512200Y-92283795D01* X194512200Y-92516205D01* X194601139Y-92730923D01* X194765477Y-92895261D01* X194980195Y-92984200D01* X195212605Y-92984200D01* X195427323Y-92895261D01* X195452000Y-92870584D01* X195476677Y-92895261D01* X195691395Y-92984200D01* X195923805Y-92984200D01* X196138523Y-92895261D01* X196302861Y-92730923D01* X196391800Y-92516205D01* X196391800Y-92283795D01* X196544200Y-92283795D01* X196544200Y-92516205D01* X196633139Y-92730923D01* X196797477Y-92895261D01* X197012195Y-92984200D01* X197244605Y-92984200D01* X197459323Y-92895261D01* X197484000Y-92870584D01* X197508677Y-92895261D01* X197723395Y-92984200D01* X197955805Y-92984200D01* X198170523Y-92895261D01* X198334861Y-92730923D01* X198423800Y-92516205D01* X198423800Y-92283795D01* X198576200Y-92283795D01* X198576200Y-92516205D01* X198665139Y-92730923D01* X198829477Y-92895261D01* X199044195Y-92984200D01* X199276605Y-92984200D01* X199491323Y-92895261D01* X199516000Y-92870584D01* X199540677Y-92895261D01* X199755395Y-92984200D01* X199987805Y-92984200D01* X200202523Y-92895261D01* X200366861Y-92730923D01* X200455800Y-92516205D01* X200455800Y-92283795D01* X200608200Y-92283795D01* X200608200Y-92516205D01* X200697139Y-92730923D01* X200861477Y-92895261D01* X201076195Y-92984200D01* X201308605Y-92984200D01* X201523323Y-92895261D01* X201548000Y-92870584D01* X201572677Y-92895261D01* X201787395Y-92984200D01* X202019805Y-92984200D01* X202234523Y-92895261D01* X202398861Y-92730923D01* X202487800Y-92516205D01* X202487800Y-92283795D01* X202615800Y-92283795D01* X202615800Y-92516205D01* X202704739Y-92730923D01* X202869077Y-92895261D01* X203083795Y-92984200D01* X203316205Y-92984200D01* X203530923Y-92895261D01* X203550000Y-92876184D01* X203569077Y-92895261D01* X203783795Y-92984200D01* X204016205Y-92984200D01* X204230923Y-92895261D01* X204395261Y-92730923D01* X204484200Y-92516205D01* X204484200Y-92283795D01* X204395261Y-92069077D01* X204230923Y-91904739D01* X204016205Y-91815800D01* X203783795Y-91815800D01* X203569077Y-91904739D01* X203550000Y-91923816D01* X203530923Y-91904739D01* X203316205Y-91815800D01* X203083795Y-91815800D01* X202869077Y-91904739D01* X202704739Y-92069077D01* X202615800Y-92283795D01* X202487800Y-92283795D01* X202398861Y-92069077D01* X202234523Y-91904739D01* X202019805Y-91815800D01* X201787395Y-91815800D01* X201572677Y-91904739D01* X201548000Y-91929416D01* X201523323Y-91904739D01* X201308605Y-91815800D01* X201076195Y-91815800D01* X200861477Y-91904739D01* X200697139Y-92069077D01* X200608200Y-92283795D01* X200455800Y-92283795D01* X200366861Y-92069077D01* X200202523Y-91904739D01* X199987805Y-91815800D01* X199755395Y-91815800D01* X199540677Y-91904739D01* X199516000Y-91929416D01* X199491323Y-91904739D01* X199276605Y-91815800D01* X199044195Y-91815800D01* X198829477Y-91904739D01* X198665139Y-92069077D01* X198576200Y-92283795D01* X198423800Y-92283795D01* X198334861Y-92069077D01* X198170523Y-91904739D01* X197955805Y-91815800D01* X197723395Y-91815800D01* X197508677Y-91904739D01* X197484000Y-91929416D01* X197459323Y-91904739D01* X197244605Y-91815800D01* X197012195Y-91815800D01* X196797477Y-91904739D01* X196633139Y-92069077D01* X196544200Y-92283795D01* X196391800Y-92283795D01* X196302861Y-92069077D01* X196138523Y-91904739D01* X195923805Y-91815800D01* X195691395Y-91815800D01* X195476677Y-91904739D01* X195452000Y-91929416D01* X195427323Y-91904739D01* X195212605Y-91815800D01* X194980195Y-91815800D01* X194765477Y-91904739D01* X194601139Y-92069077D01* X194512200Y-92283795D01* X194384200Y-92283795D01* X194295261Y-92069077D01* X194130923Y-91904739D01* X193916205Y-91815800D01* X193683795Y-91815800D01* X193469077Y-91904739D01* X193450000Y-91923816D01* X193430923Y-91904739D01* X193216205Y-91815800D01* X192983795Y-91815800D01* X192769077Y-91904739D01* X192604739Y-92069077D01* X192515800Y-92283795D01* X191042389Y-92283795D01* X191195261Y-92130923D01* X191284200Y-91916205D01* X191284200Y-91683795D01* X191201358Y-91483795D01* X205715800Y-91483795D01* X205715800Y-91716205D01* X205804739Y-91930923D01* X205969077Y-92095261D01* X206183795Y-92184200D01* X206416205Y-92184200D01* X206630923Y-92095261D01* X206795261Y-91930923D01* X206884200Y-91716205D01* X206884200Y-91483795D01* X206795261Y-91269077D01* X206630923Y-91104739D01* X206416205Y-91015800D01* X206183795Y-91015800D01* X205969077Y-91104739D01* X205804739Y-91269077D01* X205715800Y-91483795D01* X191201358Y-91483795D01* X191195261Y-91469077D01* X191030923Y-91304739D01* X190816205Y-91215800D01* X190583795Y-91215800D01* X190369077Y-91304739D01* X190204739Y-91469077D01* X190127000Y-91656756D01* X190127000Y-87383795D01* X194215800Y-87383795D01* X194215800Y-87616205D01* X194304739Y-87830923D01* X194469077Y-87995261D01* X194683795Y-88084200D01* X194916205Y-88084200D01* X195130923Y-87995261D01* X195295261Y-87830923D01* X195384200Y-87616205D01* X195384200Y-87383795D01* X195515800Y-87383795D01* X195515800Y-87616205D01* X195604739Y-87830923D01* X195769077Y-87995261D01* X195983795Y-88084200D01* X196216205Y-88084200D01* X196430923Y-87995261D01* X196595261Y-87830923D01* X196684200Y-87616205D01* X196684200Y-87383795D01* X196595261Y-87169077D01* X196430923Y-87004739D01* X196216205Y-86915800D01* X195983795Y-86915800D01* X195769077Y-87004739D01* X195604739Y-87169077D01* X195515800Y-87383795D01* X195384200Y-87383795D01* X195295261Y-87169077D01* X195130923Y-87004739D01* X194916205Y-86915800D01* X194683795Y-86915800D01* X194469077Y-87004739D01* X194304739Y-87169077D01* X194215800Y-87383795D01* X190127000Y-87383795D01* X190127000Y-86643244D01* X190204739Y-86830923D01* X190369077Y-86995261D01* X190583795Y-87084200D01* X190816205Y-87084200D01* X191030923Y-86995261D01* X191195261Y-86830923D01* X191284200Y-86616205D01* X191284200Y-86383795D01* X191195261Y-86169077D01* X191030923Y-86004739D01* X190980360Y-85983795D01* X194215800Y-85983795D01* X194215800Y-86216205D01* X194304739Y-86430923D01* X194469077Y-86595261D01* X194683795Y-86684200D01* X194916205Y-86684200D01* X195130923Y-86595261D01* X195295261Y-86430923D01* X195384200Y-86216205D01* X195384200Y-85983795D01* X195295261Y-85769077D01* X195130923Y-85604739D01* X194916205Y-85515800D01* X194683795Y-85515800D01* X194469077Y-85604739D01* X194304739Y-85769077D01* X194215800Y-85983795D01* X190980360Y-85983795D01* X190898771Y-85950000D01* X191030923Y-85895261D01* X191195261Y-85730923D01* X191284200Y-85516205D01* X191284200Y-85367393D01* X203315800Y-85367393D01* X203315800Y-85599803D01* X203404739Y-85814521D01* X203569077Y-85978859D01* X203600317Y-85991799D01* X203569077Y-86004739D01* X203404739Y-86169077D01* X203315800Y-86383795D01* X203315800Y-86616205D01* X203404739Y-86830923D01* X203569077Y-86995261D01* X203580518Y-87000000D01* X203569077Y-87004739D01* X203404739Y-87169077D01* X203315800Y-87383795D01* X203315800Y-87616205D01* X203404739Y-87830923D01* X203569077Y-87995261D01* X203580518Y-88000000D01* X203569077Y-88004739D01* X203404739Y-88169077D01* X203315800Y-88383795D01* X203315800Y-88616205D01* X203404739Y-88830923D01* X203569077Y-88995261D01* X203580518Y-89000000D01* X203569077Y-89004739D01* X203404739Y-89169077D01* X203315800Y-89383795D01* X203315800Y-89616205D01* X203404739Y-89830923D01* X203569077Y-89995261D01* X203580518Y-90000000D01* X203569077Y-90004739D01* X203404739Y-90169077D01* X203315800Y-90383795D01* X203315800Y-90616205D01* X203404739Y-90830923D01* X203569077Y-90995261D01* X203783795Y-91084200D01* X204016205Y-91084200D01* X204230923Y-90995261D01* X204395261Y-90830923D01* X204484200Y-90616205D01* X204484200Y-90383795D01* X204395261Y-90169077D01* X204230923Y-90004739D01* X204219482Y-90000000D01* X204230923Y-89995261D01* X204395261Y-89830923D01* X204484200Y-89616205D01* X204484200Y-89383795D01* X204395261Y-89169077D01* X204230923Y-89004739D01* X204219482Y-89000000D01* X204230923Y-88995261D01* X204395261Y-88830923D01* X204484200Y-88616205D01* X204484200Y-88383795D01* X204395261Y-88169077D01* X204230923Y-88004739D01* X204219482Y-88000000D01* X204230923Y-87995261D01* X204395261Y-87830923D01* X204484200Y-87616205D01* X204484200Y-87420108D01* X206264800Y-87420108D01* X206264800Y-87839892D01* X206425444Y-88227723D01* X206722277Y-88524556D01* X207110108Y-88685200D01* X207529892Y-88685200D01* X207917723Y-88524556D01* X208214556Y-88227723D01* X208375200Y-87839892D01* X208375200Y-87420108D01* X208298609Y-87235200D01* X208639294Y-87235200D01* X209229273Y-86990823D01* X209680823Y-86539273D01* X209925200Y-85949294D01* X209925200Y-85310706D01* X209680823Y-84720727D01* X209229273Y-84269177D01* X208639294Y-84024800D01* X208000706Y-84024800D01* X207410727Y-84269177D01* X206959177Y-84720727D01* X206714800Y-85310706D01* X206714800Y-85949294D01* X206959177Y-86539273D01* X207028505Y-86608601D01* X206722277Y-86735444D01* X206425444Y-87032277D01* X206264800Y-87420108D01* X204484200Y-87420108D01* X204484200Y-87383795D01* X204395261Y-87169077D01* X204230923Y-87004739D01* X204219482Y-87000000D01* X204230923Y-86995261D01* X204395261Y-86830923D01* X204484200Y-86616205D01* X204484200Y-86383795D01* X204395261Y-86169077D01* X204230923Y-86004739D01* X204199683Y-85991799D01* X204230923Y-85978859D01* X204395261Y-85814521D01* X204484200Y-85599803D01* X204484200Y-85367393D01* X204395261Y-85152675D01* X204230923Y-84988337D01* X204016205Y-84899398D01* X203783795Y-84899398D01* X203569077Y-84988337D01* X203404739Y-85152675D01* X203315800Y-85367393D01* X191284200Y-85367393D01* X191284200Y-85283795D01* X191195261Y-85069077D01* X191076184Y-84950000D01* X191195261Y-84830923D01* X191284200Y-84616205D01* X191284200Y-84383795D01* X191195261Y-84169077D01* X191030923Y-84004739D01* X190816205Y-83915800D01* X190583795Y-83915800D01* X190369077Y-84004739D01* X190262966Y-84110850D01* X190375200Y-83839892D01* X190375200Y-83420108D01* X190360159Y-83383795D01* X205715800Y-83383795D01* X205715800Y-83616205D01* X205804739Y-83830923D01* X205923816Y-83950000D01* X205804739Y-84069077D01* X205715800Y-84283795D01* X205715800Y-84516205D01* X205804739Y-84730923D01* X205969077Y-84895261D01* X206183795Y-84984200D01* X206416205Y-84984200D01* X206630923Y-84895261D01* X206795261Y-84730923D01* X206884200Y-84516205D01* X206884200Y-84283795D01* X206795261Y-84069077D01* X206676184Y-83950000D01* X206795261Y-83830923D01* X206884200Y-83616205D01* X206884200Y-83383795D01* X206795261Y-83169077D01* X206630923Y-83004739D01* X206416205Y-82915800D01* X206183795Y-82915800D01* X205969077Y-83004739D01* X205804739Y-83169077D01* X205715800Y-83383795D01* X190360159Y-83383795D01* X190214556Y-83032277D01* X190127000Y-82944721D01* X190127000Y-82253184D01* X190269077Y-82395261D01* X190483795Y-82484200D01* X190716205Y-82484200D01* X190930923Y-82395261D01* X191095261Y-82230923D01* X191184200Y-82016205D01* X191184200Y-81783795D01* X191095261Y-81569077D01* X190930923Y-81404739D01* X190716205Y-81315800D01* X190483795Y-81315800D01* X190269077Y-81404739D01* X190127000Y-81546816D01* X190127000Y-81283795D01* X205715800Y-81283795D01* X205715800Y-81516205D01* X205804739Y-81730923D01* X205969077Y-81895261D01* X206183795Y-81984200D01* X206416205Y-81984200D01* X206630923Y-81895261D01* X206795261Y-81730923D01* X206884200Y-81516205D01* X206884200Y-81283795D01* X206795261Y-81069077D01* X206630923Y-80904739D01* X206416205Y-80815800D01* X206183795Y-80815800D01* X205969077Y-80904739D01* X205804739Y-81069077D01* X205715800Y-81283795D01* X190127000Y-81283795D01* X190127000Y-79083795D01* X192315800Y-79083795D01* X192315800Y-79316205D01* X192404739Y-79530923D01* X192569077Y-79695261D01* X192783795Y-79784200D01* X193016205Y-79784200D01* X193230923Y-79695261D01* X193395261Y-79530923D01* X193399459Y-79520789D01* X193403891Y-79531489D01* X193568511Y-79696109D01* X193783596Y-79785200D01* X194016404Y-79785200D01* X194231489Y-79696109D01* X194396109Y-79531489D01* X194450541Y-79400078D01* X194504739Y-79530923D01* X194669077Y-79695261D01* X194883795Y-79784200D01* X195116205Y-79784200D01* X195330923Y-79695261D01* X195450000Y-79576184D01* X195569077Y-79695261D01* X195783795Y-79784200D01* X196016205Y-79784200D01* X196230923Y-79695261D01* X196395261Y-79530923D01* X196450000Y-79398771D01* X196504739Y-79530923D01* X196669077Y-79695261D01* X196883795Y-79784200D01* X197116205Y-79784200D01* X197330923Y-79695261D01* X197450000Y-79576184D01* X197569077Y-79695261D01* X197783795Y-79784200D01* X198016205Y-79784200D01* X198230923Y-79695261D01* X198395261Y-79530923D01* X198484200Y-79316205D01* X198484200Y-79083795D01* X199415800Y-79083795D01* X199415800Y-79316205D01* X199504739Y-79530923D01* X199669077Y-79695261D01* X199883795Y-79784200D01* X200116205Y-79784200D01* X200330923Y-79695261D01* X200495261Y-79530923D01* X200500000Y-79519482D01* X200504739Y-79530923D01* X200669077Y-79695261D01* X200883795Y-79784200D01* X201116205Y-79784200D01* X201330923Y-79695261D01* X201495261Y-79530923D01* X201500000Y-79519482D01* X201504739Y-79530923D01* X201669077Y-79695261D01* X201883795Y-79784200D01* X202116205Y-79784200D01* X202330923Y-79695261D01* X202495261Y-79530923D01* X202550000Y-79398771D01* X202604739Y-79530923D01* X202769077Y-79695261D01* X202983795Y-79784200D01* X203216205Y-79784200D01* X203430923Y-79695261D01* X203595261Y-79530923D01* X203600000Y-79519482D01* X203604739Y-79530923D01* X203769077Y-79695261D01* X203983795Y-79784200D01* X204216205Y-79784200D01* X204430923Y-79695261D01* X204595261Y-79530923D01* X204684200Y-79316205D01* X204684200Y-79083795D01* X204595261Y-78869077D01* X204430923Y-78704739D01* X204216205Y-78615800D01* X203983795Y-78615800D01* X203769077Y-78704739D01* X203604739Y-78869077D01* X203600000Y-78880518D01* X203595261Y-78869077D01* X203430923Y-78704739D01* X203216205Y-78615800D01* X202983795Y-78615800D01* X202769077Y-78704739D01* X202604739Y-78869077D01* X202550000Y-79001229D01* X202495261Y-78869077D01* X202330923Y-78704739D01* X202116205Y-78615800D01* X201883795Y-78615800D01* X201669077Y-78704739D01* X201504739Y-78869077D01* X201500000Y-78880518D01* X201495261Y-78869077D01* X201330923Y-78704739D01* X201116205Y-78615800D01* X200883795Y-78615800D01* X200669077Y-78704739D01* X200504739Y-78869077D01* X200500000Y-78880518D01* X200495261Y-78869077D01* X200330923Y-78704739D01* X200116205Y-78615800D01* X199883795Y-78615800D01* X199669077Y-78704739D01* X199504739Y-78869077D01* X199415800Y-79083795D01* X198484200Y-79083795D01* X198395261Y-78869077D01* X198230923Y-78704739D01* X198016205Y-78615800D01* X197783795Y-78615800D01* X197569077Y-78704739D01* X197450000Y-78823816D01* X197330923Y-78704739D01* X197116205Y-78615800D01* X196883795Y-78615800D01* X196669077Y-78704739D01* X196504739Y-78869077D01* X196450000Y-79001229D01* X196395261Y-78869077D01* X196230923Y-78704739D01* X196016205Y-78615800D01* X195783795Y-78615800D01* X195569077Y-78704739D01* X195450000Y-78823816D01* X195330923Y-78704739D01* X195116205Y-78615800D01* X194883795Y-78615800D01* X194669077Y-78704739D01* X194504739Y-78869077D01* X194450541Y-78999922D01* X194396109Y-78868511D01* X194231489Y-78703891D01* X194016404Y-78614800D01* X193783596Y-78614800D01* X193568511Y-78703891D01* X193403891Y-78868511D01* X193399459Y-78879211D01* X193395261Y-78869077D01* X193230923Y-78704739D01* X193016205Y-78615800D01* X192783795Y-78615800D01* X192569077Y-78704739D01* X192404739Y-78869077D01* X192315800Y-79083795D01* X190127000Y-79083795D01* X190127000Y-77383795D01* X197315800Y-77383795D01* X197315800Y-77616205D01* X197404739Y-77830923D01* X197569077Y-77995261D01* X197783795Y-78084200D01* X198016205Y-78084200D01* X198230923Y-77995261D01* X198395261Y-77830923D01* X198484200Y-77616205D01* X198484200Y-77383795D01* X200515800Y-77383795D01* X200515800Y-77616205D01* X200604739Y-77830923D01* X200769077Y-77995261D01* X200983795Y-78084200D01* X201216205Y-78084200D01* X201430923Y-77995261D01* X201595261Y-77830923D01* X201684200Y-77616205D01* X201684200Y-77383795D01* X201595261Y-77169077D01* X201430923Y-77004739D01* X201216205Y-76915800D01* X200983795Y-76915800D01* X200769077Y-77004739D01* X200604739Y-77169077D01* X200515800Y-77383795D01* X198484200Y-77383795D01* X198395261Y-77169077D01* X198230923Y-77004739D01* X198016205Y-76915800D01* X197783795Y-76915800D01* X197569077Y-77004739D01* X197404739Y-77169077D01* X197315800Y-77383795D01* X190127000Y-77383795D01* X190127000Y-75127000D01* X210594801Y-75127000D01* X210594800Y-94373000D01* G04 #@! TO.N,/imagers/CAM2_3V3* G36* X88769077Y-78704739D02* X88604739Y-78869077D01* X88515800Y-79083795D01* X88515800Y-79316205D01* X88604739Y-79530923D01* X88769077Y-79695261D01* X88983795Y-79784200D01* X89216205Y-79784200D01* X89373000Y-79719253D01* X89373000Y-80280747D01* X89216205Y-80215800D01* X88983795Y-80215800D01* X88769077Y-80304739D01* X88604739Y-80469077D01* X88515800Y-80683795D01* X88515800Y-80916205D01* X88604739Y-81130923D01* X88769077Y-81295261D01* X88983795Y-81384200D01* X89216205Y-81384200D01* X89373000Y-81319253D01* X89373000Y-84412904D01* X89229273Y-84269177D01* X88639294Y-84024800D01* X88000706Y-84024800D01* X87410727Y-84269177D01* X86959177Y-84720727D01* X86714800Y-85310706D01* X86714800Y-85949294D01* X86959177Y-86539273D01* X87028505Y-86608601D01* X86722277Y-86735444D01* X86425444Y-87032277D01* X86264800Y-87420108D01* X86264800Y-87839892D01* X86425444Y-88227723D01* X86722277Y-88524556D01* X87110108Y-88685200D01* X87529892Y-88685200D01* X87917723Y-88524556D01* X88214556Y-88227723D01* X88375200Y-87839892D01* X88375200Y-87420108D01* X88298609Y-87235200D01* X88639294Y-87235200D01* X89229273Y-86990823D01* X89373000Y-86847096D01* X89373000Y-92873000D01* X84330784Y-92873000D01* X84416861Y-92786923D01* X84505800Y-92572205D01* X84505800Y-92339795D01* X84416861Y-92125077D01* X84252523Y-91960739D01* X84037805Y-91871800D01* X83805395Y-91871800D01* X83590677Y-91960739D01* X83566000Y-91985416D01* X83541323Y-91960739D01* X83326605Y-91871800D01* X83094195Y-91871800D01* X82879477Y-91960739D01* X82715139Y-92125077D01* X82626200Y-92339795D01* X82626200Y-92572205D01* X82715139Y-92786923D01* X82801216Y-92873000D01* X82298784Y-92873000D01* X82384861Y-92786923D01* X82473800Y-92572205D01* X82473800Y-92339795D01* X82384861Y-92125077D01* X82220523Y-91960739D01* X82005805Y-91871800D01* X81773395Y-91871800D01* X81558677Y-91960739D01* X81534000Y-91985416D01* X81509323Y-91960739D01* X81294605Y-91871800D01* X81062195Y-91871800D01* X80847477Y-91960739D01* X80683139Y-92125077D01* X80594200Y-92339795D01* X80594200Y-92572205D01* X80683139Y-92786923D01* X80769216Y-92873000D01* X80266784Y-92873000D01* X80352861Y-92786923D01* X80441800Y-92572205D01* X80441800Y-92339795D01* X80352861Y-92125077D01* X80188523Y-91960739D01* X79973805Y-91871800D01* X79741395Y-91871800D01* X79526677Y-91960739D01* X79502000Y-91985416D01* X79477323Y-91960739D01* X79262605Y-91871800D01* X79030195Y-91871800D01* X78815477Y-91960739D01* X78651139Y-92125077D01* X78562200Y-92339795D01* X78562200Y-92572205D01* X78651139Y-92786923D01* X78737216Y-92873000D01* X78234784Y-92873000D01* X78320861Y-92786923D01* X78409800Y-92572205D01* X78409800Y-92339795D01* X78320861Y-92125077D01* X78156523Y-91960739D01* X77941805Y-91871800D01* X77709395Y-91871800D01* X77494677Y-91960739D01* X77470000Y-91985416D01* X77445323Y-91960739D01* X77230605Y-91871800D01* X76998195Y-91871800D01* X76783477Y-91960739D01* X76619139Y-92125077D01* X76530200Y-92339795D01* X76530200Y-92572205D01* X76619139Y-92786923D01* X76705216Y-92873000D01* X76202784Y-92873000D01* X76288861Y-92786923D01* X76377800Y-92572205D01* X76377800Y-92339795D01* X76288861Y-92125077D01* X76124523Y-91960739D01* X75909805Y-91871800D01* X75677395Y-91871800D01* X75462677Y-91960739D01* X75438000Y-91985416D01* X75413323Y-91960739D01* X75198605Y-91871800D01* X74966195Y-91871800D01* X74751477Y-91960739D01* X74587139Y-92125077D01* X74498200Y-92339795D01* X74498200Y-92572205D01* X74587139Y-92786923D01* X74673216Y-92873000D01* X74170784Y-92873000D01* X74256861Y-92786923D01* X74345800Y-92572205D01* X74345800Y-92339795D01* X74256861Y-92125077D01* X74092523Y-91960739D01* X73877805Y-91871800D01* X73645395Y-91871800D01* X73430677Y-91960739D01* X73406000Y-91985416D01* X73381323Y-91960739D01* X73166605Y-91871800D01* X72934195Y-91871800D01* X72719477Y-91960739D01* X72555139Y-92125077D01* X72466200Y-92339795D01* X72466200Y-92572205D01* X72555139Y-92786923D01* X72641216Y-92873000D01* X71314295Y-92873000D01* X71384212Y-92704205D01* X71384212Y-92471795D01* X71295273Y-92257077D01* X71130935Y-92092739D01* X71100174Y-92079998D01* X71130923Y-92067261D01* X71295261Y-91902923D01* X71384200Y-91688205D01* X71384200Y-91455795D01* X71295261Y-91241077D01* X71137979Y-91083795D01* X74015800Y-91083795D01* X74015800Y-91316205D01* X74104739Y-91530923D01* X74269077Y-91695261D01* X74483795Y-91784200D01* X74716205Y-91784200D01* X74930923Y-91695261D01* X75095261Y-91530923D01* X75114782Y-91483795D01* X85615800Y-91483795D01* X85615800Y-91716205D01* X85704739Y-91930923D01* X85869077Y-92095261D01* X86083795Y-92184200D01* X86316205Y-92184200D01* X86530923Y-92095261D01* X86695261Y-91930923D01* X86784200Y-91716205D01* X86784200Y-91483795D01* X86695261Y-91269077D01* X86530923Y-91104739D01* X86316205Y-91015800D01* X86083795Y-91015800D01* X85869077Y-91104739D01* X85704739Y-91269077D01* X85615800Y-91483795D01* X75114782Y-91483795D01* X75184200Y-91316205D01* X75184200Y-91083795D01* X75095261Y-90869077D01* X74930923Y-90704739D01* X74716205Y-90615800D01* X74483795Y-90615800D01* X74269077Y-90704739D01* X74104739Y-90869077D01* X74015800Y-91083795D01* X71137979Y-91083795D01* X71130923Y-91076739D01* X71100168Y-91064000D01* X71130923Y-91051261D01* X71295261Y-90886923D01* X71384200Y-90672205D01* X71384200Y-90483795D01* X80815800Y-90483795D01* X80815800Y-90716205D01* X80904739Y-90930923D01* X81069077Y-91095261D01* X81283795Y-91184200D01* X81516205Y-91184200D01* X81730923Y-91095261D01* X81895261Y-90930923D01* X81984200Y-90716205D01* X81984200Y-90483795D01* X81895261Y-90269077D01* X81730923Y-90104739D01* X81516205Y-90015800D01* X81283795Y-90015800D01* X81069077Y-90104739D01* X80904739Y-90269077D01* X80815800Y-90483795D01* X71384200Y-90483795D01* X71384200Y-90439795D01* X71295261Y-90225077D01* X71130923Y-90060739D01* X70916205Y-89971800D01* X70683795Y-89971800D01* X70469077Y-90060739D01* X70304739Y-90225077D01* X70215800Y-90439795D01* X70215800Y-90672205D01* X70304739Y-90886923D01* X70469077Y-91051261D01* X70499832Y-91064000D01* X70469077Y-91076739D01* X70304739Y-91241077D01* X70215800Y-91455795D01* X70215800Y-91688205D01* X70304739Y-91902923D01* X70469077Y-92067261D01* X70499838Y-92080002D01* X70469089Y-92092739D01* X70304751Y-92257077D01* X70215812Y-92471795D01* X70215812Y-92704205D01* X70285729Y-92873000D01* X69127000Y-92873000D01* X69127000Y-89483795D01* X83415788Y-89483795D01* X83415788Y-89716205D01* X83504727Y-89930923D01* X83623810Y-90050006D01* X83504739Y-90169077D01* X83415800Y-90383795D01* X83415800Y-90616205D01* X83504739Y-90830923D01* X83669077Y-90995261D01* X83883795Y-91084200D01* X84116205Y-91084200D01* X84330923Y-90995261D01* X84495261Y-90830923D01* X84584200Y-90616205D01* X84584200Y-90383795D01* X84495261Y-90169077D01* X84376178Y-90049994D01* X84495249Y-89930923D01* X84584188Y-89716205D01* X84584188Y-89483795D01* X84495249Y-89269077D01* X84330911Y-89104739D01* X84198772Y-89050005D01* X84330923Y-88995267D01* X84495261Y-88830929D01* X84584200Y-88616211D01* X84584200Y-88383801D01* X84495261Y-88169083D01* X84330923Y-88004745D01* X84319475Y-88000003D01* X84330923Y-87995261D01* X84495261Y-87830923D01* X84584200Y-87616205D01* X84584200Y-87383795D01* X84495261Y-87169077D01* X84330923Y-87004739D01* X84319482Y-87000000D01* X84330923Y-86995261D01* X84495261Y-86830923D01* X84584200Y-86616205D01* X84584200Y-86383795D01* X84495261Y-86169077D01* X84330923Y-86004739D01* X84319482Y-86000000D01* X84330923Y-85995261D01* X84495261Y-85830923D01* X84584200Y-85616205D01* X84584200Y-85383795D01* X84495261Y-85169077D01* X84330923Y-85004739D01* X84116205Y-84915800D01* X83883795Y-84915800D01* X83669077Y-85004739D01* X83504739Y-85169077D01* X83415800Y-85383795D01* X83415800Y-85616205D01* X83504739Y-85830923D01* X83669077Y-85995261D01* X83680518Y-86000000D01* X83669077Y-86004739D01* X83504739Y-86169077D01* X83415800Y-86383795D01* X83415800Y-86616205D01* X83504739Y-86830923D01* X83669077Y-86995261D01* X83680518Y-87000000D01* X83669077Y-87004739D01* X83504739Y-87169077D01* X83415800Y-87383795D01* X83415800Y-87616205D01* X83504739Y-87830923D01* X83669077Y-87995261D01* X83680525Y-88000003D01* X83669077Y-88004745D01* X83504739Y-88169083D01* X83415800Y-88383801D01* X83415800Y-88616211D01* X83504739Y-88830929D01* X83669077Y-88995267D01* X83801216Y-89050001D01* X83669065Y-89104739D01* X83504727Y-89269077D01* X83415788Y-89483795D01* X69127000Y-89483795D01* X69127000Y-87883795D01* X69515800Y-87883795D01* X69515800Y-88116205D01* X69604739Y-88330923D01* X69769077Y-88495261D01* X69983795Y-88584200D01* X70215800Y-88584200D01* X70215800Y-88616205D01* X70304739Y-88830923D01* X70469077Y-88995261D01* X70683795Y-89084200D01* X70916205Y-89084200D01* X71130923Y-88995261D01* X71295261Y-88830923D01* X71384200Y-88616205D01* X71384200Y-88383795D01* X71295261Y-88169077D01* X71130923Y-88004739D01* X70916205Y-87915800D01* X70684200Y-87915800D01* X70684200Y-87883795D01* X70595261Y-87669077D01* X70430923Y-87504739D01* X70216205Y-87415800D01* X69983795Y-87415800D01* X69769077Y-87504739D01* X69604739Y-87669077D01* X69515800Y-87883795D01* X69127000Y-87883795D01* X69127000Y-87033186D01* X69229273Y-86990823D01* X69680823Y-86539273D01* X69925200Y-85949294D01* X69925200Y-85310706D01* X69680823Y-84720727D01* X69611495Y-84651399D01* X69917723Y-84524556D01* X70098484Y-84343795D01* X70215800Y-84343795D01* X70215800Y-84576205D01* X70304739Y-84790923D01* X70469077Y-84955261D01* X70499832Y-84968000D01* X70469077Y-84980739D01* X70304739Y-85145077D01* X70215800Y-85359795D01* X70215800Y-85592205D01* X70304739Y-85806923D01* X70469077Y-85971261D01* X70499839Y-85984003D01* X70469091Y-85996739D01* X70304753Y-86161077D01* X70215814Y-86375795D01* X70215814Y-86608205D01* X70304753Y-86822923D01* X70469091Y-86987261D01* X70683809Y-87076200D01* X70916219Y-87076200D01* X71130937Y-86987261D01* X71295275Y-86822923D01* X71384214Y-86608205D01* X71384214Y-86375795D01* X71295275Y-86161077D01* X71130937Y-85996739D01* X71100175Y-85983997D01* X71130923Y-85971261D01* X71295261Y-85806923D01* X71384200Y-85592205D01* X71384200Y-85359795D01* X71295261Y-85145077D01* X71130923Y-84980739D01* X71100168Y-84968000D01* X71130923Y-84955261D01* X71295261Y-84790923D01* X71384200Y-84576205D01* X71384200Y-84343795D01* X71295261Y-84129077D01* X71149979Y-83983795D01* X75115800Y-83983795D01* X75115800Y-84216205D01* X75204739Y-84430923D01* X75369077Y-84595261D01* X75390259Y-84604035D01* X75315800Y-84783795D01* X75315800Y-85016205D01* X75404739Y-85230923D01* X75569077Y-85395261D01* X75783795Y-85484200D01* X76016205Y-85484200D01* X76230923Y-85395261D01* X76395261Y-85230923D01* X76484200Y-85016205D01* X76484200Y-84783795D01* X76395261Y-84569077D01* X76230923Y-84404739D01* X76209741Y-84395965D01* X76256203Y-84283795D01* X85615800Y-84283795D01* X85615800Y-84516205D01* X85704739Y-84730923D01* X85869077Y-84895261D01* X86083795Y-84984200D01* X86316205Y-84984200D01* X86530923Y-84895261D01* X86695261Y-84730923D01* X86784200Y-84516205D01* X86784200Y-84283795D01* X86695261Y-84069077D01* X86530923Y-83904739D01* X86519485Y-83900001D01* X86530929Y-83895261D01* X86695267Y-83730923D01* X86784206Y-83516205D01* X86784206Y-83283795D01* X86695267Y-83069077D01* X86530929Y-82904739D01* X86316211Y-82815800D01* X86083801Y-82815800D01* X85869083Y-82904739D01* X85704745Y-83069077D01* X85615806Y-83283795D01* X85615806Y-83516205D01* X85704745Y-83730923D01* X85869083Y-83895261D01* X85880521Y-83899999D01* X85869077Y-83904739D01* X85704739Y-84069077D01* X85615800Y-84283795D01* X76256203Y-84283795D01* X76284200Y-84216205D01* X76284200Y-83983795D01* X76195261Y-83769077D01* X76030923Y-83604739D01* X75816205Y-83515800D01* X75583795Y-83515800D01* X75369077Y-83604739D01* X75204739Y-83769077D01* X75115800Y-83983795D01* X71149979Y-83983795D01* X71130923Y-83964739D01* X70916205Y-83875800D01* X70683795Y-83875800D01* X70469077Y-83964739D01* X70304739Y-84129077D01* X70215800Y-84343795D01* X70098484Y-84343795D01* X70214556Y-84227723D01* X70375200Y-83839892D01* X70375200Y-83420108D01* X70214556Y-83032277D01* X69917723Y-82735444D01* X69529892Y-82574800D01* X69127000Y-82574800D01* X69127000Y-82283795D01* X70115800Y-82283795D01* X70115800Y-82516205D01* X70204739Y-82730923D01* X70369077Y-82895261D01* X70583795Y-82984200D01* X70816205Y-82984200D01* X71030923Y-82895261D01* X71195261Y-82730923D01* X71284200Y-82516205D01* X71284200Y-82283795D01* X71195261Y-82069077D01* X71030923Y-81904739D01* X70816205Y-81815800D01* X70583795Y-81815800D01* X70369077Y-81904739D01* X70204739Y-82069077D01* X70115800Y-82283795D01* X69127000Y-82283795D01* X69127000Y-81083795D01* X69715800Y-81083795D01* X69715800Y-81316205D01* X69804739Y-81530923D01* X69969077Y-81695261D01* X70183795Y-81784200D01* X70416205Y-81784200D01* X70630923Y-81695261D01* X70795261Y-81530923D01* X70814782Y-81483795D01* X79415800Y-81483795D01* X79415800Y-81716205D01* X79504739Y-81930923D01* X79669077Y-82095261D01* X79883795Y-82184200D01* X80116205Y-82184200D01* X80117182Y-82183795D01* X81015800Y-82183795D01* X81015800Y-82416205D01* X81104739Y-82630923D01* X81269077Y-82795261D01* X81483795Y-82884200D01* X81716205Y-82884200D01* X81930923Y-82795261D01* X82095261Y-82630923D01* X82184200Y-82416205D01* X82184200Y-82183795D01* X82095261Y-81969077D01* X81930923Y-81804739D01* X81716205Y-81715800D01* X81483795Y-81715800D01* X81269077Y-81804739D01* X81104739Y-81969077D01* X81015800Y-82183795D01* X80117182Y-82183795D01* X80330923Y-82095261D01* X80495261Y-81930923D01* X80584200Y-81716205D01* X80584200Y-81483795D01* X80501358Y-81283795D01* X85615800Y-81283795D01* X85615800Y-81516205D01* X85704739Y-81730923D01* X85869077Y-81895261D01* X86083795Y-81984200D01* X86316205Y-81984200D01* X86530923Y-81895261D01* X86695261Y-81730923D01* X86784200Y-81516205D01* X86784200Y-81283795D01* X86695261Y-81069077D01* X86530923Y-80904739D01* X86316205Y-80815800D01* X86083795Y-80815800D01* X85869077Y-80904739D01* X85704739Y-81069077D01* X85615800Y-81283795D01* X80501358Y-81283795D01* X80495261Y-81269077D01* X80330923Y-81104739D01* X80116205Y-81015800D01* X79883795Y-81015800D01* X79669077Y-81104739D01* X79504739Y-81269077D01* X79415800Y-81483795D01* X70814782Y-81483795D01* X70884200Y-81316205D01* X70884200Y-81083795D01* X70795261Y-80869077D01* X70630923Y-80704739D01* X70416205Y-80615800D01* X70183795Y-80615800D01* X69969077Y-80704739D01* X69804739Y-80869077D01* X69715800Y-81083795D01* X69127000Y-81083795D01* X69127000Y-79183795D01* X72115800Y-79183795D01* X72115800Y-79416205D01* X72204739Y-79630923D01* X72369077Y-79795261D01* X72583795Y-79884200D01* X72816205Y-79884200D01* X73030923Y-79795261D01* X73195261Y-79630923D01* X73284200Y-79416205D01* X73284200Y-79183795D01* X74415800Y-79183795D01* X74415800Y-79416205D01* X74504739Y-79630923D01* X74669077Y-79795261D01* X74883795Y-79884200D01* X75116205Y-79884200D01* X75330923Y-79795261D01* X75495261Y-79630923D01* X75500000Y-79619482D01* X75504739Y-79630923D01* X75669077Y-79795261D01* X75883795Y-79884200D01* X76116205Y-79884200D01* X76330923Y-79795261D01* X76495261Y-79630923D01* X76500000Y-79619482D01* X76504739Y-79630923D01* X76669077Y-79795261D01* X76883795Y-79884200D01* X77116205Y-79884200D01* X77330923Y-79795261D01* X77495261Y-79630923D01* X77500000Y-79619482D01* X77504739Y-79630923D01* X77669077Y-79795261D01* X77883795Y-79884200D01* X78116205Y-79884200D01* X78330923Y-79795261D01* X78495261Y-79630923D01* X78584200Y-79416205D01* X78584200Y-79183795D01* X79400118Y-79183795D01* X79400118Y-79416205D01* X79489057Y-79630923D01* X79653395Y-79795261D01* X79868113Y-79884200D01* X80100523Y-79884200D01* X80315241Y-79795261D01* X80479579Y-79630923D01* X80492311Y-79600185D01* X80505043Y-79630923D01* X80669381Y-79795261D01* X80884099Y-79884200D01* X81116509Y-79884200D01* X81331227Y-79795261D01* X81495565Y-79630923D01* X81500144Y-79619868D01* X81504723Y-79630923D01* X81669061Y-79795261D01* X81883779Y-79884200D01* X82116189Y-79884200D01* X82330907Y-79795261D01* X82495245Y-79630923D01* X82549992Y-79498752D01* X82604739Y-79630923D01* X82769077Y-79795261D01* X82983795Y-79884200D01* X83216205Y-79884200D01* X83430923Y-79795261D01* X83595261Y-79630923D01* X83600001Y-79619479D01* X83604739Y-79630917D01* X83769077Y-79795255D01* X83983795Y-79884194D01* X84216205Y-79884194D01* X84430923Y-79795255D01* X84595261Y-79630917D01* X84684200Y-79416199D01* X84684200Y-79183789D01* X84595261Y-78969071D01* X84430923Y-78804733D01* X84216205Y-78715794D01* X83983795Y-78715794D01* X83769077Y-78804733D01* X83604739Y-78969071D01* X83599999Y-78980515D01* X83595261Y-78969077D01* X83430923Y-78804739D01* X83216205Y-78715800D01* X82983795Y-78715800D01* X82769077Y-78804739D01* X82604739Y-78969077D01* X82549992Y-79101248D01* X82495245Y-78969077D01* X82330907Y-78804739D01* X82116189Y-78715800D01* X81883779Y-78715800D01* X81669061Y-78804739D01* X81504723Y-78969077D01* X81500144Y-78980132D01* X81495565Y-78969077D01* X81331227Y-78804739D01* X81116509Y-78715800D01* X80884099Y-78715800D01* X80669381Y-78804739D01* X80505043Y-78969077D01* X80492311Y-78999815D01* X80479579Y-78969077D01* X80315241Y-78804739D01* X80100523Y-78715800D01* X79868113Y-78715800D01* X79653395Y-78804739D01* X79489057Y-78969077D01* X79400118Y-79183795D01* X78584200Y-79183795D01* X78495261Y-78969077D01* X78330923Y-78804739D01* X78116205Y-78715800D01* X77883795Y-78715800D01* X77669077Y-78804739D01* X77504739Y-78969077D01* X77500000Y-78980518D01* X77495261Y-78969077D01* X77330923Y-78804739D01* X77116205Y-78715800D01* X76883795Y-78715800D01* X76669077Y-78804739D01* X76504739Y-78969077D01* X76500000Y-78980518D01* X76495261Y-78969077D01* X76330923Y-78804739D01* X76116205Y-78715800D01* X75883795Y-78715800D01* X75669077Y-78804739D01* X75504739Y-78969077D01* X75500000Y-78980518D01* X75495261Y-78969077D01* X75330923Y-78804739D01* X75116205Y-78715800D01* X74883795Y-78715800D01* X74669077Y-78804739D01* X74504739Y-78969077D01* X74415800Y-79183795D01* X73284200Y-79183795D01* X73195261Y-78969077D01* X73030923Y-78804739D01* X72816205Y-78715800D01* X72583795Y-78715800D01* X72369077Y-78804739D01* X72204739Y-78969077D01* X72115800Y-79183795D01* X69127000Y-79183795D01* X69127000Y-78627000D01* X88956756Y-78627000D01* X88769077Y-78704739D01* X88769077Y-78704739D01* G37* X88769077Y-78704739D02* X88604739Y-78869077D01* X88515800Y-79083795D01* X88515800Y-79316205D01* X88604739Y-79530923D01* X88769077Y-79695261D01* X88983795Y-79784200D01* X89216205Y-79784200D01* X89373000Y-79719253D01* X89373000Y-80280747D01* X89216205Y-80215800D01* X88983795Y-80215800D01* X88769077Y-80304739D01* X88604739Y-80469077D01* X88515800Y-80683795D01* X88515800Y-80916205D01* X88604739Y-81130923D01* X88769077Y-81295261D01* X88983795Y-81384200D01* X89216205Y-81384200D01* X89373000Y-81319253D01* X89373000Y-84412904D01* X89229273Y-84269177D01* X88639294Y-84024800D01* X88000706Y-84024800D01* X87410727Y-84269177D01* X86959177Y-84720727D01* X86714800Y-85310706D01* X86714800Y-85949294D01* X86959177Y-86539273D01* X87028505Y-86608601D01* X86722277Y-86735444D01* X86425444Y-87032277D01* X86264800Y-87420108D01* X86264800Y-87839892D01* X86425444Y-88227723D01* X86722277Y-88524556D01* X87110108Y-88685200D01* X87529892Y-88685200D01* X87917723Y-88524556D01* X88214556Y-88227723D01* X88375200Y-87839892D01* X88375200Y-87420108D01* X88298609Y-87235200D01* X88639294Y-87235200D01* X89229273Y-86990823D01* X89373000Y-86847096D01* X89373000Y-92873000D01* X84330784Y-92873000D01* X84416861Y-92786923D01* X84505800Y-92572205D01* X84505800Y-92339795D01* X84416861Y-92125077D01* X84252523Y-91960739D01* X84037805Y-91871800D01* X83805395Y-91871800D01* X83590677Y-91960739D01* X83566000Y-91985416D01* X83541323Y-91960739D01* X83326605Y-91871800D01* X83094195Y-91871800D01* X82879477Y-91960739D01* X82715139Y-92125077D01* X82626200Y-92339795D01* X82626200Y-92572205D01* X82715139Y-92786923D01* X82801216Y-92873000D01* X82298784Y-92873000D01* X82384861Y-92786923D01* X82473800Y-92572205D01* X82473800Y-92339795D01* X82384861Y-92125077D01* X82220523Y-91960739D01* X82005805Y-91871800D01* X81773395Y-91871800D01* X81558677Y-91960739D01* X81534000Y-91985416D01* X81509323Y-91960739D01* X81294605Y-91871800D01* X81062195Y-91871800D01* X80847477Y-91960739D01* X80683139Y-92125077D01* X80594200Y-92339795D01* X80594200Y-92572205D01* X80683139Y-92786923D01* X80769216Y-92873000D01* X80266784Y-92873000D01* X80352861Y-92786923D01* X80441800Y-92572205D01* X80441800Y-92339795D01* X80352861Y-92125077D01* X80188523Y-91960739D01* X79973805Y-91871800D01* X79741395Y-91871800D01* X79526677Y-91960739D01* X79502000Y-91985416D01* X79477323Y-91960739D01* X79262605Y-91871800D01* X79030195Y-91871800D01* X78815477Y-91960739D01* X78651139Y-92125077D01* X78562200Y-92339795D01* X78562200Y-92572205D01* X78651139Y-92786923D01* X78737216Y-92873000D01* X78234784Y-92873000D01* X78320861Y-92786923D01* X78409800Y-92572205D01* X78409800Y-92339795D01* X78320861Y-92125077D01* X78156523Y-91960739D01* X77941805Y-91871800D01* X77709395Y-91871800D01* X77494677Y-91960739D01* X77470000Y-91985416D01* X77445323Y-91960739D01* X77230605Y-91871800D01* X76998195Y-91871800D01* X76783477Y-91960739D01* X76619139Y-92125077D01* X76530200Y-92339795D01* X76530200Y-92572205D01* X76619139Y-92786923D01* X76705216Y-92873000D01* X76202784Y-92873000D01* X76288861Y-92786923D01* X76377800Y-92572205D01* X76377800Y-92339795D01* X76288861Y-92125077D01* X76124523Y-91960739D01* X75909805Y-91871800D01* X75677395Y-91871800D01* X75462677Y-91960739D01* X75438000Y-91985416D01* X75413323Y-91960739D01* X75198605Y-91871800D01* X74966195Y-91871800D01* X74751477Y-91960739D01* X74587139Y-92125077D01* X74498200Y-92339795D01* X74498200Y-92572205D01* X74587139Y-92786923D01* X74673216Y-92873000D01* X74170784Y-92873000D01* X74256861Y-92786923D01* X74345800Y-92572205D01* X74345800Y-92339795D01* X74256861Y-92125077D01* X74092523Y-91960739D01* X73877805Y-91871800D01* X73645395Y-91871800D01* X73430677Y-91960739D01* X73406000Y-91985416D01* X73381323Y-91960739D01* X73166605Y-91871800D01* X72934195Y-91871800D01* X72719477Y-91960739D01* X72555139Y-92125077D01* X72466200Y-92339795D01* X72466200Y-92572205D01* X72555139Y-92786923D01* X72641216Y-92873000D01* X71314295Y-92873000D01* X71384212Y-92704205D01* X71384212Y-92471795D01* X71295273Y-92257077D01* X71130935Y-92092739D01* X71100174Y-92079998D01* X71130923Y-92067261D01* X71295261Y-91902923D01* X71384200Y-91688205D01* X71384200Y-91455795D01* X71295261Y-91241077D01* X71137979Y-91083795D01* X74015800Y-91083795D01* X74015800Y-91316205D01* X74104739Y-91530923D01* X74269077Y-91695261D01* X74483795Y-91784200D01* X74716205Y-91784200D01* X74930923Y-91695261D01* X75095261Y-91530923D01* X75114782Y-91483795D01* X85615800Y-91483795D01* X85615800Y-91716205D01* X85704739Y-91930923D01* X85869077Y-92095261D01* X86083795Y-92184200D01* X86316205Y-92184200D01* X86530923Y-92095261D01* X86695261Y-91930923D01* X86784200Y-91716205D01* X86784200Y-91483795D01* X86695261Y-91269077D01* X86530923Y-91104739D01* X86316205Y-91015800D01* X86083795Y-91015800D01* X85869077Y-91104739D01* X85704739Y-91269077D01* X85615800Y-91483795D01* X75114782Y-91483795D01* X75184200Y-91316205D01* X75184200Y-91083795D01* X75095261Y-90869077D01* X74930923Y-90704739D01* X74716205Y-90615800D01* X74483795Y-90615800D01* X74269077Y-90704739D01* X74104739Y-90869077D01* X74015800Y-91083795D01* X71137979Y-91083795D01* X71130923Y-91076739D01* X71100168Y-91064000D01* X71130923Y-91051261D01* X71295261Y-90886923D01* X71384200Y-90672205D01* X71384200Y-90483795D01* X80815800Y-90483795D01* X80815800Y-90716205D01* X80904739Y-90930923D01* X81069077Y-91095261D01* X81283795Y-91184200D01* X81516205Y-91184200D01* X81730923Y-91095261D01* X81895261Y-90930923D01* X81984200Y-90716205D01* X81984200Y-90483795D01* X81895261Y-90269077D01* X81730923Y-90104739D01* X81516205Y-90015800D01* X81283795Y-90015800D01* X81069077Y-90104739D01* X80904739Y-90269077D01* X80815800Y-90483795D01* X71384200Y-90483795D01* X71384200Y-90439795D01* X71295261Y-90225077D01* X71130923Y-90060739D01* X70916205Y-89971800D01* X70683795Y-89971800D01* X70469077Y-90060739D01* X70304739Y-90225077D01* X70215800Y-90439795D01* X70215800Y-90672205D01* X70304739Y-90886923D01* X70469077Y-91051261D01* X70499832Y-91064000D01* X70469077Y-91076739D01* X70304739Y-91241077D01* X70215800Y-91455795D01* X70215800Y-91688205D01* X70304739Y-91902923D01* X70469077Y-92067261D01* X70499838Y-92080002D01* X70469089Y-92092739D01* X70304751Y-92257077D01* X70215812Y-92471795D01* X70215812Y-92704205D01* X70285729Y-92873000D01* X69127000Y-92873000D01* X69127000Y-89483795D01* X83415788Y-89483795D01* X83415788Y-89716205D01* X83504727Y-89930923D01* X83623810Y-90050006D01* X83504739Y-90169077D01* X83415800Y-90383795D01* X83415800Y-90616205D01* X83504739Y-90830923D01* X83669077Y-90995261D01* X83883795Y-91084200D01* X84116205Y-91084200D01* X84330923Y-90995261D01* X84495261Y-90830923D01* X84584200Y-90616205D01* X84584200Y-90383795D01* X84495261Y-90169077D01* X84376178Y-90049994D01* X84495249Y-89930923D01* X84584188Y-89716205D01* X84584188Y-89483795D01* X84495249Y-89269077D01* X84330911Y-89104739D01* X84198772Y-89050005D01* X84330923Y-88995267D01* X84495261Y-88830929D01* X84584200Y-88616211D01* X84584200Y-88383801D01* X84495261Y-88169083D01* X84330923Y-88004745D01* X84319475Y-88000003D01* X84330923Y-87995261D01* X84495261Y-87830923D01* X84584200Y-87616205D01* X84584200Y-87383795D01* X84495261Y-87169077D01* X84330923Y-87004739D01* X84319482Y-87000000D01* X84330923Y-86995261D01* X84495261Y-86830923D01* X84584200Y-86616205D01* X84584200Y-86383795D01* X84495261Y-86169077D01* X84330923Y-86004739D01* X84319482Y-86000000D01* X84330923Y-85995261D01* X84495261Y-85830923D01* X84584200Y-85616205D01* X84584200Y-85383795D01* X84495261Y-85169077D01* X84330923Y-85004739D01* X84116205Y-84915800D01* X83883795Y-84915800D01* X83669077Y-85004739D01* X83504739Y-85169077D01* X83415800Y-85383795D01* X83415800Y-85616205D01* X83504739Y-85830923D01* X83669077Y-85995261D01* X83680518Y-86000000D01* X83669077Y-86004739D01* X83504739Y-86169077D01* X83415800Y-86383795D01* X83415800Y-86616205D01* X83504739Y-86830923D01* X83669077Y-86995261D01* X83680518Y-87000000D01* X83669077Y-87004739D01* X83504739Y-87169077D01* X83415800Y-87383795D01* X83415800Y-87616205D01* X83504739Y-87830923D01* X83669077Y-87995261D01* X83680525Y-88000003D01* X83669077Y-88004745D01* X83504739Y-88169083D01* X83415800Y-88383801D01* X83415800Y-88616211D01* X83504739Y-88830929D01* X83669077Y-88995267D01* X83801216Y-89050001D01* X83669065Y-89104739D01* X83504727Y-89269077D01* X83415788Y-89483795D01* X69127000Y-89483795D01* X69127000Y-87883795D01* X69515800Y-87883795D01* X69515800Y-88116205D01* X69604739Y-88330923D01* X69769077Y-88495261D01* X69983795Y-88584200D01* X70215800Y-88584200D01* X70215800Y-88616205D01* X70304739Y-88830923D01* X70469077Y-88995261D01* X70683795Y-89084200D01* X70916205Y-89084200D01* X71130923Y-88995261D01* X71295261Y-88830923D01* X71384200Y-88616205D01* X71384200Y-88383795D01* X71295261Y-88169077D01* X71130923Y-88004739D01* X70916205Y-87915800D01* X70684200Y-87915800D01* X70684200Y-87883795D01* X70595261Y-87669077D01* X70430923Y-87504739D01* X70216205Y-87415800D01* X69983795Y-87415800D01* X69769077Y-87504739D01* X69604739Y-87669077D01* X69515800Y-87883795D01* X69127000Y-87883795D01* X69127000Y-87033186D01* X69229273Y-86990823D01* X69680823Y-86539273D01* X69925200Y-85949294D01* X69925200Y-85310706D01* X69680823Y-84720727D01* X69611495Y-84651399D01* X69917723Y-84524556D01* X70098484Y-84343795D01* X70215800Y-84343795D01* X70215800Y-84576205D01* X70304739Y-84790923D01* X70469077Y-84955261D01* X70499832Y-84968000D01* X70469077Y-84980739D01* X70304739Y-85145077D01* X70215800Y-85359795D01* X70215800Y-85592205D01* X70304739Y-85806923D01* X70469077Y-85971261D01* X70499839Y-85984003D01* X70469091Y-85996739D01* X70304753Y-86161077D01* X70215814Y-86375795D01* X70215814Y-86608205D01* X70304753Y-86822923D01* X70469091Y-86987261D01* X70683809Y-87076200D01* X70916219Y-87076200D01* X71130937Y-86987261D01* X71295275Y-86822923D01* X71384214Y-86608205D01* X71384214Y-86375795D01* X71295275Y-86161077D01* X71130937Y-85996739D01* X71100175Y-85983997D01* X71130923Y-85971261D01* X71295261Y-85806923D01* X71384200Y-85592205D01* X71384200Y-85359795D01* X71295261Y-85145077D01* X71130923Y-84980739D01* X71100168Y-84968000D01* X71130923Y-84955261D01* X71295261Y-84790923D01* X71384200Y-84576205D01* X71384200Y-84343795D01* X71295261Y-84129077D01* X71149979Y-83983795D01* X75115800Y-83983795D01* X75115800Y-84216205D01* X75204739Y-84430923D01* X75369077Y-84595261D01* X75390259Y-84604035D01* X75315800Y-84783795D01* X75315800Y-85016205D01* X75404739Y-85230923D01* X75569077Y-85395261D01* X75783795Y-85484200D01* X76016205Y-85484200D01* X76230923Y-85395261D01* X76395261Y-85230923D01* X76484200Y-85016205D01* X76484200Y-84783795D01* X76395261Y-84569077D01* X76230923Y-84404739D01* X76209741Y-84395965D01* X76256203Y-84283795D01* X85615800Y-84283795D01* X85615800Y-84516205D01* X85704739Y-84730923D01* X85869077Y-84895261D01* X86083795Y-84984200D01* X86316205Y-84984200D01* X86530923Y-84895261D01* X86695261Y-84730923D01* X86784200Y-84516205D01* X86784200Y-84283795D01* X86695261Y-84069077D01* X86530923Y-83904739D01* X86519485Y-83900001D01* X86530929Y-83895261D01* X86695267Y-83730923D01* X86784206Y-83516205D01* X86784206Y-83283795D01* X86695267Y-83069077D01* X86530929Y-82904739D01* X86316211Y-82815800D01* X86083801Y-82815800D01* X85869083Y-82904739D01* X85704745Y-83069077D01* X85615806Y-83283795D01* X85615806Y-83516205D01* X85704745Y-83730923D01* X85869083Y-83895261D01* X85880521Y-83899999D01* X85869077Y-83904739D01* X85704739Y-84069077D01* X85615800Y-84283795D01* X76256203Y-84283795D01* X76284200Y-84216205D01* X76284200Y-83983795D01* X76195261Y-83769077D01* X76030923Y-83604739D01* X75816205Y-83515800D01* X75583795Y-83515800D01* X75369077Y-83604739D01* X75204739Y-83769077D01* X75115800Y-83983795D01* X71149979Y-83983795D01* X71130923Y-83964739D01* X70916205Y-83875800D01* X70683795Y-83875800D01* X70469077Y-83964739D01* X70304739Y-84129077D01* X70215800Y-84343795D01* X70098484Y-84343795D01* X70214556Y-84227723D01* X70375200Y-83839892D01* X70375200Y-83420108D01* X70214556Y-83032277D01* X69917723Y-82735444D01* X69529892Y-82574800D01* X69127000Y-82574800D01* X69127000Y-82283795D01* X70115800Y-82283795D01* X70115800Y-82516205D01* X70204739Y-82730923D01* X70369077Y-82895261D01* X70583795Y-82984200D01* X70816205Y-82984200D01* X71030923Y-82895261D01* X71195261Y-82730923D01* X71284200Y-82516205D01* X71284200Y-82283795D01* X71195261Y-82069077D01* X71030923Y-81904739D01* X70816205Y-81815800D01* X70583795Y-81815800D01* X70369077Y-81904739D01* X70204739Y-82069077D01* X70115800Y-82283795D01* X69127000Y-82283795D01* X69127000Y-81083795D01* X69715800Y-81083795D01* X69715800Y-81316205D01* X69804739Y-81530923D01* X69969077Y-81695261D01* X70183795Y-81784200D01* X70416205Y-81784200D01* X70630923Y-81695261D01* X70795261Y-81530923D01* X70814782Y-81483795D01* X79415800Y-81483795D01* X79415800Y-81716205D01* X79504739Y-81930923D01* X79669077Y-82095261D01* X79883795Y-82184200D01* X80116205Y-82184200D01* X80117182Y-82183795D01* X81015800Y-82183795D01* X81015800Y-82416205D01* X81104739Y-82630923D01* X81269077Y-82795261D01* X81483795Y-82884200D01* X81716205Y-82884200D01* X81930923Y-82795261D01* X82095261Y-82630923D01* X82184200Y-82416205D01* X82184200Y-82183795D01* X82095261Y-81969077D01* X81930923Y-81804739D01* X81716205Y-81715800D01* X81483795Y-81715800D01* X81269077Y-81804739D01* X81104739Y-81969077D01* X81015800Y-82183795D01* X80117182Y-82183795D01* X80330923Y-82095261D01* X80495261Y-81930923D01* X80584200Y-81716205D01* X80584200Y-81483795D01* X80501358Y-81283795D01* X85615800Y-81283795D01* X85615800Y-81516205D01* X85704739Y-81730923D01* X85869077Y-81895261D01* X86083795Y-81984200D01* X86316205Y-81984200D01* X86530923Y-81895261D01* X86695261Y-81730923D01* X86784200Y-81516205D01* X86784200Y-81283795D01* X86695261Y-81069077D01* X86530923Y-80904739D01* X86316205Y-80815800D01* X86083795Y-80815800D01* X85869077Y-80904739D01* X85704739Y-81069077D01* X85615800Y-81283795D01* X80501358Y-81283795D01* X80495261Y-81269077D01* X80330923Y-81104739D01* X80116205Y-81015800D01* X79883795Y-81015800D01* X79669077Y-81104739D01* X79504739Y-81269077D01* X79415800Y-81483795D01* X70814782Y-81483795D01* X70884200Y-81316205D01* X70884200Y-81083795D01* X70795261Y-80869077D01* X70630923Y-80704739D01* X70416205Y-80615800D01* X70183795Y-80615800D01* X69969077Y-80704739D01* X69804739Y-80869077D01* X69715800Y-81083795D01* X69127000Y-81083795D01* X69127000Y-79183795D01* X72115800Y-79183795D01* X72115800Y-79416205D01* X72204739Y-79630923D01* X72369077Y-79795261D01* X72583795Y-79884200D01* X72816205Y-79884200D01* X73030923Y-79795261D01* X73195261Y-79630923D01* X73284200Y-79416205D01* X73284200Y-79183795D01* X74415800Y-79183795D01* X74415800Y-79416205D01* X74504739Y-79630923D01* X74669077Y-79795261D01* X74883795Y-79884200D01* X75116205Y-79884200D01* X75330923Y-79795261D01* X75495261Y-79630923D01* X75500000Y-79619482D01* X75504739Y-79630923D01* X75669077Y-79795261D01* X75883795Y-79884200D01* X76116205Y-79884200D01* X76330923Y-79795261D01* X76495261Y-79630923D01* X76500000Y-79619482D01* X76504739Y-79630923D01* X76669077Y-79795261D01* X76883795Y-79884200D01* X77116205Y-79884200D01* X77330923Y-79795261D01* X77495261Y-79630923D01* X77500000Y-79619482D01* X77504739Y-79630923D01* X77669077Y-79795261D01* X77883795Y-79884200D01* X78116205Y-79884200D01* X78330923Y-79795261D01* X78495261Y-79630923D01* X78584200Y-79416205D01* X78584200Y-79183795D01* X79400118Y-79183795D01* X79400118Y-79416205D01* X79489057Y-79630923D01* X79653395Y-79795261D01* X79868113Y-79884200D01* X80100523Y-79884200D01* X80315241Y-79795261D01* X80479579Y-79630923D01* X80492311Y-79600185D01* X80505043Y-79630923D01* X80669381Y-79795261D01* X80884099Y-79884200D01* X81116509Y-79884200D01* X81331227Y-79795261D01* X81495565Y-79630923D01* X81500144Y-79619868D01* X81504723Y-79630923D01* X81669061Y-79795261D01* X81883779Y-79884200D01* X82116189Y-79884200D01* X82330907Y-79795261D01* X82495245Y-79630923D01* X82549992Y-79498752D01* X82604739Y-79630923D01* X82769077Y-79795261D01* X82983795Y-79884200D01* X83216205Y-79884200D01* X83430923Y-79795261D01* X83595261Y-79630923D01* X83600001Y-79619479D01* X83604739Y-79630917D01* X83769077Y-79795255D01* X83983795Y-79884194D01* X84216205Y-79884194D01* X84430923Y-79795255D01* X84595261Y-79630917D01* X84684200Y-79416199D01* X84684200Y-79183789D01* X84595261Y-78969071D01* X84430923Y-78804733D01* X84216205Y-78715794D01* X83983795Y-78715794D01* X83769077Y-78804733D01* X83604739Y-78969071D01* X83599999Y-78980515D01* X83595261Y-78969077D01* X83430923Y-78804739D01* X83216205Y-78715800D01* X82983795Y-78715800D01* X82769077Y-78804739D01* X82604739Y-78969077D01* X82549992Y-79101248D01* X82495245Y-78969077D01* X82330907Y-78804739D01* X82116189Y-78715800D01* X81883779Y-78715800D01* X81669061Y-78804739D01* X81504723Y-78969077D01* X81500144Y-78980132D01* X81495565Y-78969077D01* X81331227Y-78804739D01* X81116509Y-78715800D01* X80884099Y-78715800D01* X80669381Y-78804739D01* X80505043Y-78969077D01* X80492311Y-78999815D01* X80479579Y-78969077D01* X80315241Y-78804739D01* X80100523Y-78715800D01* X79868113Y-78715800D01* X79653395Y-78804739D01* X79489057Y-78969077D01* X79400118Y-79183795D01* X78584200Y-79183795D01* X78495261Y-78969077D01* X78330923Y-78804739D01* X78116205Y-78715800D01* X77883795Y-78715800D01* X77669077Y-78804739D01* X77504739Y-78969077D01* X77500000Y-78980518D01* X77495261Y-78969077D01* X77330923Y-78804739D01* X77116205Y-78715800D01* X76883795Y-78715800D01* X76669077Y-78804739D01* X76504739Y-78969077D01* X76500000Y-78980518D01* X76495261Y-78969077D01* X76330923Y-78804739D01* X76116205Y-78715800D01* X75883795Y-78715800D01* X75669077Y-78804739D01* X75504739Y-78969077D01* X75500000Y-78980518D01* X75495261Y-78969077D01* X75330923Y-78804739D01* X75116205Y-78715800D01* X74883795Y-78715800D01* X74669077Y-78804739D01* X74504739Y-78969077D01* X74415800Y-79183795D01* X73284200Y-79183795D01* X73195261Y-78969077D01* X73030923Y-78804739D01* X72816205Y-78715800D01* X72583795Y-78715800D01* X72369077Y-78804739D01* X72204739Y-78969077D01* X72115800Y-79183795D01* X69127000Y-79183795D01* X69127000Y-78627000D01* X88956756Y-78627000D01* X88769077Y-78704739D01* G04 #@! TD* M02*
programs/oeis/136/A136763.asm
neoneye/loda
22
23850
; A136763: a(n) = leading digit of n! in base 13. ; 1,1,2,6,1,9,4,2,1,12,9,8,7,7,8,9,11,1,1,2,3,5,9,1,2,4,9,1,3,7,1,3,7,1,3,10,2,6,1,4,1,3,10,2,9,2,8,2,8,2,9,2,11,3,1,4,1,7,2,11,4,1,6,2,12,4,1,9,3,1,8,3,1,8,3,1,9,4,2,12,5,2,1,8,4,2,1,7,3,2,1,7,4,2,1,9,5,3,1,1 seq $0,142 ; Factorial numbers: n! = 1*2*3*4*...*n (order of symmetric group S_n, number of permutations of n letters). lpb $0 mov $1,$0 div $0,13 mul $1,2 add $1,1 lpe sub $1,3 div $1,2 add $1,1 mov $0,$1
source/amf/utp/amf-internals-tables-utp_reflection.adb
svn2github/matreshka
24
23020
<filename>source/amf/utp/amf-internals-tables-utp_reflection.adb ------------------------------------------------------------------------------ -- -- -- Matreshka Project -- -- -- -- Ada Modeling Framework -- -- -- -- Runtime Library Component -- -- -- ------------------------------------------------------------------------------ -- -- -- Copyright © 2012, <NAME> <<EMAIL>> -- -- 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 Vadim Godunko, IE 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. -- -- -- ------------------------------------------------------------------------------ -- $Revision$ $Date$ ------------------------------------------------------------------------------ -- This file is generated, don't edit it. ------------------------------------------------------------------------------ with AMF.Holders.Elements; with AMF.Holders.Unlimited_Naturals; with AMF.Internals.Helpers; with AMF.Internals.Holders.UML_Holders; with AMF.Internals.Tables.UTP_Element_Table; with AMF.Internals.Tables.UTP_Types; with AMF.Internals.Tables.Utp_Metamodel; with AMF.String_Collections.Internals; with AMF.UML.Accept_Event_Actions; with AMF.UML.Behaviored_Classifiers; with AMF.UML.Behaviors; with AMF.UML.Call_Operation_Actions; with AMF.UML.Classifiers; with AMF.UML.Combined_Fragments; with AMF.UML.Dependencies; with AMF.UML.Elements; with AMF.UML.Invocation_Actions; with AMF.UML.Literal_Specifications; with AMF.UML.Messages; with AMF.UML.Namespaces; with AMF.UML.Opaque_Actions; with AMF.UML.Operations; with AMF.UML.Properties; with AMF.UML.Read_Structural_Feature_Actions; with AMF.UML.Send_Object_Actions; with AMF.UML.Structured_Classifiers; with AMF.UML.Time_Events; with AMF.UML.Value_Specifications; with AMF.UML.Write_Structural_Feature_Actions; with AMF.Utp.Coding_Rules; with AMF.Utp.Data_Partitions; with AMF.Utp.Data_Pools; with AMF.Utp.Data_Selectors; with AMF.Utp.Default_Applications; with AMF.Utp.Defaults; with AMF.Utp.Determ_Alts; with AMF.Utp.Finish_Actions; with AMF.Utp.Get_Timezone_Actions; with AMF.Utp.Holders.Verdicts; with AMF.Utp.Literal_Anies; with AMF.Utp.Literal_Any_Or_Nulls; with AMF.Utp.Log_Actions; with AMF.Utp.Managed_Elements; with AMF.Utp.Read_Timer_Actions; with AMF.Utp.SUTs; with AMF.Utp.Set_Timezone_Actions; with AMF.Utp.Start_Timer_Actions; with AMF.Utp.Stop_Timer_Actions; with AMF.Utp.Test_Cases.Collections; with AMF.Utp.Test_Components; with AMF.Utp.Test_Contexts; with AMF.Utp.Test_Log_Applications; with AMF.Utp.Test_Logs; with AMF.Utp.Test_Objectives; with AMF.Utp.Test_Suites; with AMF.Utp.Time_Out_Actions; with AMF.Utp.Time_Out_Messages; with AMF.Utp.Time_Outs; with AMF.Utp.Timer_Running_Actions; with AMF.Utp.Validation_Actions; with League.Holders; package body AMF.Internals.Tables.UTP_Reflection is --------- -- Get -- --------- function Get (Self : AMF.Internals.AMF_Element; Property : CMOF_Element) return League.Holders.Holder is function Utp_Coding_Rule_Get return League.Holders.Holder; -- Returns attribute's value of instance of CodingRule class. function Utp_Data_Partition_Get return League.Holders.Holder; -- Returns attribute's value of instance of DataPartition class. function Utp_Data_Pool_Get return League.Holders.Holder; -- Returns attribute's value of instance of DataPool class. function Utp_Data_Selector_Get return League.Holders.Holder; -- Returns attribute's value of instance of DataSelector class. function Utp_Default_Get return League.Holders.Holder; -- Returns attribute's value of instance of Default class. function Utp_Default_Application_Get return League.Holders.Holder; -- Returns attribute's value of instance of DefaultApplication class. function Utp_Determ_Alt_Get return League.Holders.Holder; -- Returns attribute's value of instance of DetermAlt class. function Utp_Finish_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of FinishAction class. function Utp_Get_Timezone_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of GetTimezoneAction class. function Utp_Literal_Any_Get return League.Holders.Holder; -- Returns attribute's value of instance of LiteralAny class. function Utp_Literal_Any_Or_Null_Get return League.Holders.Holder; -- Returns attribute's value of instance of LiteralAnyOrNull class. function Utp_Log_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of LogAction class. function Utp_Managed_Element_Get return League.Holders.Holder; -- Returns attribute's value of instance of ManagedElement class. function Utp_Read_Timer_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of ReadTimerAction class. function Utp_SUT_Get return League.Holders.Holder; -- Returns attribute's value of instance of SUT class. function Utp_Set_Timezone_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of SetTimezoneAction class. function Utp_Start_Timer_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of StartTimerAction class. function Utp_Stop_Timer_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of StopTimerAction class. function Utp_Test_Case_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestCase class. function Utp_Test_Component_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestComponent class. function Utp_Test_Context_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestContext class. function Utp_Test_Log_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestLog class. function Utp_Test_Log_Application_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestLogApplication class. function Utp_Test_Objective_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestObjective class. function Utp_Test_Suite_Get return League.Holders.Holder; -- Returns attribute's value of instance of TestSuite class. function Utp_Time_Out_Get return League.Holders.Holder; -- Returns attribute's value of instance of TimeOut class. function Utp_Time_Out_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of TimeOutAction class. function Utp_Time_Out_Message_Get return League.Holders.Holder; -- Returns attribute's value of instance of TimeOutMessage class. function Utp_Timer_Running_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of TimerRunningAction class. function Utp_Validation_Action_Get return League.Holders.Holder; -- Returns attribute's value of instance of ValidationAction class. ------------------------- -- Utp_Coding_Rule_Get -- ------------------------- function Utp_Coding_Rule_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Base_Namespace_A_Extension_Coding_Rule then -- CodingRule::base_Namespace : Namespace return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Namespaces.UML_Namespace_Access' (AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Namespace)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Base_Property_A_Extension_Coding_Rule then -- CodingRule::base_Property : Property return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Properties.UML_Property_Access' (AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Property)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Base_Value_Specification_A_Extension_Coding_Rule then -- CodingRule::base_ValueSpecification : ValueSpecification return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Value_Specifications.UML_Value_Specification_Access' (AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Value_Specification)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Coding then -- CodingRule::coding : String return League.Holders.To_Holder (AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Coding); else raise Program_Error; end if; end Utp_Coding_Rule_Get; ---------------------------- -- Utp_Data_Partition_Get -- ---------------------------- function Utp_Data_Partition_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Partition_Base_Classifier_A_Extension_Data_Partition then -- DataPartition::base_Classifier : Classifier return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Classifiers.UML_Classifier_Access' (AMF.Utp.Data_Partitions.Utp_Data_Partition_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Classifier)); else raise Program_Error; end if; end Utp_Data_Partition_Get; ----------------------- -- Utp_Data_Pool_Get -- ----------------------- function Utp_Data_Pool_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Pool_Base_Classifier_A_Extension_Data_Pool then -- DataPool::base_Classifier : Classifier return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Classifiers.UML_Classifier_Access' (AMF.Utp.Data_Pools.Utp_Data_Pool_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Classifier)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Pool_Base_Property_A_Extension_Data_Pool then -- DataPool::base_Property : Property return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Properties.UML_Property_Access' (AMF.Utp.Data_Pools.Utp_Data_Pool_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Property)); else raise Program_Error; end if; end Utp_Data_Pool_Get; --------------------------- -- Utp_Data_Selector_Get -- --------------------------- function Utp_Data_Selector_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Selector_Base_Operation_A_Extension_Data_Selector then -- DataSelector::base_Operation : Operation return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Operations.UML_Operation_Access' (AMF.Utp.Data_Selectors.Utp_Data_Selector_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Operation)); else raise Program_Error; end if; end Utp_Data_Selector_Get; --------------------- -- Utp_Default_Get -- --------------------- function Utp_Default_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Default_Base_Behavior_A_Extension_Default then -- Default::base_Behavior : Behavior return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Behaviors.UML_Behavior_Access' (AMF.Utp.Defaults.Utp_Default_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Behavior)); else raise Program_Error; end if; end Utp_Default_Get; --------------------------------- -- Utp_Default_Application_Get -- --------------------------------- function Utp_Default_Application_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Default_Application_Base_Dependency_A_Extension_Default_Application then -- DefaultApplication::base_Dependency : Dependency return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Dependencies.UML_Dependency_Access' (AMF.Utp.Default_Applications.Utp_Default_Application_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Dependency)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Default_Application_Repetition then -- DefaultApplication::repetition : UnlimitedNatural return AMF.Holders.Unlimited_Naturals.To_Holder (AMF.Utp.Default_Applications.Utp_Default_Application_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Repetition); else raise Program_Error; end if; end Utp_Default_Application_Get; ------------------------ -- Utp_Determ_Alt_Get -- ------------------------ function Utp_Determ_Alt_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Determ_Alt_Base_Combined_Fragment_A_Extension_Determ_Alt then -- DetermAlt::base_CombinedFragment : CombinedFragment return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Combined_Fragments.UML_Combined_Fragment_Access' (AMF.Utp.Determ_Alts.Utp_Determ_Alt_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Combined_Fragment)); else raise Program_Error; end if; end Utp_Determ_Alt_Get; --------------------------- -- Utp_Finish_Action_Get -- --------------------------- function Utp_Finish_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Finish_Action_Base_Invocation_Action_A_Extension_Finish_Action then -- FinishAction::base_InvocationAction : InvocationAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Invocation_Actions.UML_Invocation_Action_Access' (AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Invocation_Action)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Finish_Action_Base_Opaque_Action_A_Extension_Finish_Action then -- FinishAction::base_OpaqueAction : OpaqueAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Opaque_Actions.UML_Opaque_Action_Access' (AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Opaque_Action)); else raise Program_Error; end if; end Utp_Finish_Action_Get; --------------------------------- -- Utp_Get_Timezone_Action_Get -- --------------------------------- function Utp_Get_Timezone_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Get_Timezone_Action_Base_Read_Structural_Feature_Action_A_Extension_Get_Timezone_Action then -- GetTimezoneAction::base_ReadStructuralFeatureAction : ReadStructuralFeatureAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access' (AMF.Utp.Get_Timezone_Actions.Utp_Get_Timezone_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Read_Structural_Feature_Action)); else raise Program_Error; end if; end Utp_Get_Timezone_Action_Get; ------------------------- -- Utp_Literal_Any_Get -- ------------------------- function Utp_Literal_Any_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Literal_Any_Base_Literal_Specification_A_Extension_Literal_Any then -- LiteralAny::base_LiteralSpecification : LiteralSpecification return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Literal_Specifications.UML_Literal_Specification_Access' (AMF.Utp.Literal_Anies.Utp_Literal_Any_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Literal_Specification)); else raise Program_Error; end if; end Utp_Literal_Any_Get; --------------------------------- -- Utp_Literal_Any_Or_Null_Get -- --------------------------------- function Utp_Literal_Any_Or_Null_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Literal_Any_Or_Null_Base_Literal_Specification_A_Extension_Literal_Any_Or_Null then -- LiteralAnyOrNull::base_LiteralSpecification : LiteralSpecification return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Literal_Specifications.UML_Literal_Specification_Access' (AMF.Utp.Literal_Any_Or_Nulls.Utp_Literal_Any_Or_Null_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Literal_Specification)); else raise Program_Error; end if; end Utp_Literal_Any_Or_Null_Get; ------------------------ -- Utp_Log_Action_Get -- ------------------------ function Utp_Log_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Log_Action_Base_Send_Object_Action_A_Extension_Log_Action then -- LogAction::base_SendObjectAction : SendObjectAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Send_Object_Actions.UML_Send_Object_Action_Access' (AMF.Utp.Log_Actions.Utp_Log_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Send_Object_Action)); else raise Program_Error; end if; end Utp_Log_Action_Get; ----------------------------- -- Utp_Managed_Element_Get -- ----------------------------- function Utp_Managed_Element_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Base_Element_A_Extension_Managed_Element then -- ManagedElement::base_Element : Element return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Elements.UML_Element_Access' (AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Element)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Criticality then -- ManagedElement::criticality : String return AMF.Holders.To_Holder (AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Criticality); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Description then -- ManagedElement::description : String return AMF.Holders.To_Holder (AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Description); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Owner then -- ManagedElement::owner : String return AMF.Holders.To_Holder (AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Owner); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Version then -- ManagedElement::version : String return AMF.Holders.To_Holder (AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Version); else raise Program_Error; end if; end Utp_Managed_Element_Get; ------------------------------- -- Utp_Read_Timer_Action_Get -- ------------------------------- function Utp_Read_Timer_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Read_Timer_Action_Base_Call_Operation_Action_A_Extension_Read_Timer_Action then -- ReadTimerAction::base_CallOperationAction : CallOperationAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access' (AMF.Utp.Read_Timer_Actions.Utp_Read_Timer_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Call_Operation_Action)); else raise Program_Error; end if; end Utp_Read_Timer_Action_Get; ----------------- -- Utp_SUT_Get -- ----------------- function Utp_SUT_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_SUT_Base_Property_A_Extension_SUT then -- SUT::base_Property : Property return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Properties.UML_Property_Access' (AMF.Utp.SUTs.Utp_SUT_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Property)); else raise Program_Error; end if; end Utp_SUT_Get; --------------------------------- -- Utp_Set_Timezone_Action_Get -- --------------------------------- function Utp_Set_Timezone_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Set_Timezone_Action_Base_Write_Structural_Feature_Action_A_Extension_Set_Timezone_Action then -- SetTimezoneAction::base_WriteStructuralFeatureAction : WriteStructuralFeatureAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Write_Structural_Feature_Actions.UML_Write_Structural_Feature_Action_Access' (AMF.Utp.Set_Timezone_Actions.Utp_Set_Timezone_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Write_Structural_Feature_Action)); else raise Program_Error; end if; end Utp_Set_Timezone_Action_Get; -------------------------------- -- Utp_Start_Timer_Action_Get -- -------------------------------- function Utp_Start_Timer_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Start_Timer_Action_Base_Call_Operation_Action_A_Extension_Start_Timer_Action then -- StartTimerAction::base_CallOperationAction : CallOperationAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access' (AMF.Utp.Start_Timer_Actions.Utp_Start_Timer_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Call_Operation_Action)); else raise Program_Error; end if; end Utp_Start_Timer_Action_Get; ------------------------------- -- Utp_Stop_Timer_Action_Get -- ------------------------------- function Utp_Stop_Timer_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Stop_Timer_Action_Base_Call_Operation_Action_A_Extension_Stop_Timer_Action then -- StopTimerAction::base_CallOperationAction : CallOperationAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access' (AMF.Utp.Stop_Timer_Actions.Utp_Stop_Timer_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Call_Operation_Action)); else raise Program_Error; end if; end Utp_Stop_Timer_Action_Get; ----------------------- -- Utp_Test_Case_Get -- ----------------------- function Utp_Test_Case_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Base_Behavior_A_Extension_Test_Case then -- TestCase::base_Behavior : Behavior return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Behaviors.UML_Behavior_Access' (AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Behavior)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Base_Operation_A_Extension_Test_Case then -- TestCase::base_Operation : Operation return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Operations.UML_Operation_Access' (AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Operation)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Compatible_SUT_Variant then -- TestCase::compatibleSUTVariant : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Compatible_SUT_Variant); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Compatible_SUT_Version then -- TestCase::compatibleSUTVersion : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Compatible_SUT_Version); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Priority then -- TestCase::priority : String return AMF.Holders.To_Holder (AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Priority); else raise Program_Error; end if; end Utp_Test_Case_Get; ---------------------------- -- Utp_Test_Component_Get -- ---------------------------- function Utp_Test_Component_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Component_Base_Structured_Classifier_A_Extension_Test_Component then -- TestComponent::base_StructuredClassifier : StructuredClassifier return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access' (AMF.Utp.Test_Components.Utp_Test_Component_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Structured_Classifier)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Component_Compatible_SUT_Variant then -- TestComponent::compatibleSUTVariant : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Components.Utp_Test_Component_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Compatible_SUT_Variant); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Component_Compatible_SUT_Version then -- TestComponent::compatibleSUTVersion : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Components.Utp_Test_Component_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Compatible_SUT_Version); else raise Program_Error; end if; end Utp_Test_Component_Get; -------------------------- -- Utp_Test_Context_Get -- -------------------------- function Utp_Test_Context_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Base_Behaviored_Classifier_A_Extension_Test_Context then -- TestContext::base_BehavioredClassifier : BehavioredClassifier return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier_Access' (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Behaviored_Classifier)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Base_Structured_Classifier_A_Extension_Test_Context then -- TestContext::base_StructuredClassifier : StructuredClassifier return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access' (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Structured_Classifier)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Compatible_SUT_Variant then -- TestContext::compatibleSUTVariant : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Compatible_SUT_Variant); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Compatible_SUT_Version then -- TestContext::compatibleSUTVersion : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Compatible_SUT_Version); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Test_Level then -- TestContext::testLevel : String return AMF.Holders.To_Holder (AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Test_Level); else raise Program_Error; end if; end Utp_Test_Context_Get; ---------------------- -- Utp_Test_Log_Get -- ---------------------- function Utp_Test_Log_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Base_Behavior_A_Extension_Test_Log then -- TestLog::base_Behavior : Behavior return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Behaviors.UML_Behavior_Access' (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Behavior)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Duration then -- TestLog::duration : String return AMF.Holders.To_Holder (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Duration); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Executed_At then -- TestLog::executedAt : String return AMF.Holders.To_Holder (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Executed_At); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Sut_Version then -- TestLog::sutVersion : String return AMF.Holders.To_Holder (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Sut_Version); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Tester then -- TestLog::tester : String return AMF.String_Collections.Internals.To_Holder (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Tester); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Verdict then -- TestLog::verdict : Verdict return AMF.Utp.Holders.Verdicts.To_Holder (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Verdict); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Verdict_Reason then -- TestLog::verdictReason : String return AMF.Holders.To_Holder (AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Verdict_Reason); else raise Program_Error; end if; end Utp_Test_Log_Get; ---------------------------------- -- Utp_Test_Log_Application_Get -- ---------------------------------- function Utp_Test_Log_Application_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Application_Base_Dependency_A_Extension_Test_Log_Application then -- TestLogApplication::base_Dependency : Dependency return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Dependencies.UML_Dependency_Access' (AMF.Utp.Test_Log_Applications.Utp_Test_Log_Application_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Dependency)); else raise Program_Error; end if; end Utp_Test_Log_Application_Get; ---------------------------- -- Utp_Test_Objective_Get -- ---------------------------- function Utp_Test_Objective_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Objective_Base_Dependency_A_Extension_Test_Objective then -- TestObjective::base_Dependency : Dependency return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Dependencies.UML_Dependency_Access' (AMF.Utp.Test_Objectives.Utp_Test_Objective_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Dependency)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Objective_Priority then -- TestObjective::priority : String return AMF.Holders.To_Holder (AMF.Utp.Test_Objectives.Utp_Test_Objective_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Priority); else raise Program_Error; end if; end Utp_Test_Objective_Get; ------------------------ -- Utp_Test_Suite_Get -- ------------------------ function Utp_Test_Suite_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Suite_Base_Behavior_A_Extension_Test_Suite then -- TestSuite::base_Behavior : Behavior return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Behaviors.UML_Behavior_Access' (AMF.Utp.Test_Suites.Utp_Test_Suite_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Behavior)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Suite_Priority then -- TestSuite::priority : String return AMF.Holders.To_Holder (AMF.Utp.Test_Suites.Utp_Test_Suite_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Priority); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Suite_Test_Case then -- TestSuite::testCase : TestCase return AMF.Utp.Test_Cases.Collections.Utp_Test_Case_Collections.Internals.To_Holder (AMF.Utp.Test_Suites.Utp_Test_Suite_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Test_Case); else raise Program_Error; end if; end Utp_Test_Suite_Get; ---------------------- -- Utp_Time_Out_Get -- ---------------------- function Utp_Time_Out_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Time_Out_Base_Time_Event_A_Extension_Time_Out then -- TimeOut::base_TimeEvent : TimeEvent return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Time_Events.UML_Time_Event_Access' (AMF.Utp.Time_Outs.Utp_Time_Out_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Time_Event)); else raise Program_Error; end if; end Utp_Time_Out_Get; ----------------------------- -- Utp_Time_Out_Action_Get -- ----------------------------- function Utp_Time_Out_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Time_Out_Action_Base_Accept_Event_Action_A_Extension_Time_Out_Action then -- TimeOutAction::base_AcceptEventAction : AcceptEventAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Accept_Event_Actions.UML_Accept_Event_Action_Access' (AMF.Utp.Time_Out_Actions.Utp_Time_Out_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Accept_Event_Action)); else raise Program_Error; end if; end Utp_Time_Out_Action_Get; ------------------------------ -- Utp_Time_Out_Message_Get -- ------------------------------ function Utp_Time_Out_Message_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Time_Out_Message_Base_Message_A_Extension_Time_Out_Message then -- TimeOutMessage::base_Message : Message return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Messages.UML_Message_Access' (AMF.Utp.Time_Out_Messages.Utp_Time_Out_Message_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Message)); else raise Program_Error; end if; end Utp_Time_Out_Message_Get; ---------------------------------- -- Utp_Timer_Running_Action_Get -- ---------------------------------- function Utp_Timer_Running_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Timer_Running_Action_Base_Read_Structural_Feature_Action_A_Extension_Timer_Running_Action then -- TimerRunningAction::base_ReadStructuralFeatureAction : ReadStructuralFeatureAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access' (AMF.Utp.Timer_Running_Actions.Utp_Timer_Running_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Read_Structural_Feature_Action)); else raise Program_Error; end if; end Utp_Timer_Running_Action_Get; ------------------------------- -- Utp_Validation_Action_Get -- ------------------------------- function Utp_Validation_Action_Get return League.Holders.Holder is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Validation_Action_Base_Call_Operation_Action_A_Extension_Validation_Action then -- ValidationAction::base_CallOperationAction : CallOperationAction return AMF.Internals.Holders.UML_Holders.To_Holder (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access' (AMF.Utp.Validation_Actions.Utp_Validation_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Get_Base_Call_Operation_Action)); else raise Program_Error; end if; end Utp_Validation_Action_Get; begin case AMF.Internals.Tables.UTP_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.UTP_Types.E_None => raise Program_Error; when AMF.Internals.Tables.UTP_Types.E_Utp_Coding_Rule => return Utp_Coding_Rule_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Partition => return Utp_Data_Partition_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Pool => return Utp_Data_Pool_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Selector => return Utp_Data_Selector_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Default => return Utp_Default_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Default_Application => return Utp_Default_Application_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Determ_Alt => return Utp_Determ_Alt_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Finish_Action => return Utp_Finish_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Get_Timezone_Action => return Utp_Get_Timezone_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Literal_Any => return Utp_Literal_Any_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Literal_Any_Or_Null => return Utp_Literal_Any_Or_Null_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Log_Action => return Utp_Log_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Managed_Element => return Utp_Managed_Element_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Read_Timer_Action => return Utp_Read_Timer_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_SUT => return Utp_SUT_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Set_Timezone_Action => return Utp_Set_Timezone_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Start_Timer_Action => return Utp_Start_Timer_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Stop_Timer_Action => return Utp_Stop_Timer_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Case => return Utp_Test_Case_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Component => return Utp_Test_Component_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Context => return Utp_Test_Context_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Log => return Utp_Test_Log_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Log_Application => return Utp_Test_Log_Application_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Objective => return Utp_Test_Objective_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Suite => return Utp_Test_Suite_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out => return Utp_Time_Out_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out_Action => return Utp_Time_Out_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out_Message => return Utp_Time_Out_Message_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Timer_Running_Action => return Utp_Timer_Running_Action_Get; when AMF.Internals.Tables.UTP_Types.E_Utp_Validation_Action => return Utp_Validation_Action_Get; end case; end Get; -------------------- -- Get_Meta_Class -- -------------------- function Get_Meta_Class (Self : AMF.Internals.AMF_Element) return CMOF_Element is begin case UTP_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.UTP_Types.E_None => return 0; when AMF.Internals.Tables.UTP_Types.E_Utp_Coding_Rule => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Coding_Rule; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Partition => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Data_Partition; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Pool => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Data_Pool; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Selector => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Data_Selector; when AMF.Internals.Tables.UTP_Types.E_Utp_Default => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Default; when AMF.Internals.Tables.UTP_Types.E_Utp_Default_Application => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Default_Application; when AMF.Internals.Tables.UTP_Types.E_Utp_Determ_Alt => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Determ_Alt; when AMF.Internals.Tables.UTP_Types.E_Utp_Finish_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Finish_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Get_Timezone_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Get_Timezone_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Literal_Any => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Literal_Any; when AMF.Internals.Tables.UTP_Types.E_Utp_Literal_Any_Or_Null => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Literal_Any_Or_Null; when AMF.Internals.Tables.UTP_Types.E_Utp_Log_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Log_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Managed_Element => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Managed_Element; when AMF.Internals.Tables.UTP_Types.E_Utp_Read_Timer_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Read_Timer_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_SUT => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_SUT; when AMF.Internals.Tables.UTP_Types.E_Utp_Set_Timezone_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Set_Timezone_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Start_Timer_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Start_Timer_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Stop_Timer_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Stop_Timer_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Case => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Case; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Component => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Component; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Context => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Context; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Log => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Log; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Log_Application => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Log_Application; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Objective => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Objective; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Suite => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Test_Suite; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Time_Out; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Time_Out_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out_Message => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Time_Out_Message; when AMF.Internals.Tables.UTP_Types.E_Utp_Timer_Running_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Timer_Running_Action; when AMF.Internals.Tables.UTP_Types.E_Utp_Validation_Action => return AMF.Internals.Tables.Utp_Metamodel.MC_Utp_Validation_Action; end case; end Get_Meta_Class; --------- -- Set -- --------- procedure Set (Self : AMF.Internals.AMF_Element; Property : CMOF_Element; Value : League.Holders.Holder) is procedure Utp_Coding_Rule_Set; -- Sets attribute's value of instance of CodingRule class. procedure Utp_Data_Partition_Set; -- Sets attribute's value of instance of DataPartition class. procedure Utp_Data_Pool_Set; -- Sets attribute's value of instance of DataPool class. procedure Utp_Data_Selector_Set; -- Sets attribute's value of instance of DataSelector class. procedure Utp_Default_Set; -- Sets attribute's value of instance of Default class. procedure Utp_Default_Application_Set; -- Sets attribute's value of instance of DefaultApplication class. procedure Utp_Determ_Alt_Set; -- Sets attribute's value of instance of DetermAlt class. procedure Utp_Finish_Action_Set; -- Sets attribute's value of instance of FinishAction class. procedure Utp_Get_Timezone_Action_Set; -- Sets attribute's value of instance of GetTimezoneAction class. procedure Utp_Literal_Any_Set; -- Sets attribute's value of instance of LiteralAny class. procedure Utp_Literal_Any_Or_Null_Set; -- Sets attribute's value of instance of LiteralAnyOrNull class. procedure Utp_Log_Action_Set; -- Sets attribute's value of instance of LogAction class. procedure Utp_Managed_Element_Set; -- Sets attribute's value of instance of ManagedElement class. procedure Utp_Read_Timer_Action_Set; -- Sets attribute's value of instance of ReadTimerAction class. procedure Utp_SUT_Set; -- Sets attribute's value of instance of SUT class. procedure Utp_Set_Timezone_Action_Set; -- Sets attribute's value of instance of SetTimezoneAction class. procedure Utp_Start_Timer_Action_Set; -- Sets attribute's value of instance of StartTimerAction class. procedure Utp_Stop_Timer_Action_Set; -- Sets attribute's value of instance of StopTimerAction class. procedure Utp_Test_Case_Set; -- Sets attribute's value of instance of TestCase class. procedure Utp_Test_Component_Set; -- Sets attribute's value of instance of TestComponent class. procedure Utp_Test_Context_Set; -- Sets attribute's value of instance of TestContext class. procedure Utp_Test_Log_Set; -- Sets attribute's value of instance of TestLog class. procedure Utp_Test_Log_Application_Set; -- Sets attribute's value of instance of TestLogApplication class. procedure Utp_Test_Objective_Set; -- Sets attribute's value of instance of TestObjective class. procedure Utp_Test_Suite_Set; -- Sets attribute's value of instance of TestSuite class. procedure Utp_Time_Out_Set; -- Sets attribute's value of instance of TimeOut class. procedure Utp_Time_Out_Action_Set; -- Sets attribute's value of instance of TimeOutAction class. procedure Utp_Time_Out_Message_Set; -- Sets attribute's value of instance of TimeOutMessage class. procedure Utp_Timer_Running_Action_Set; -- Sets attribute's value of instance of TimerRunningAction class. procedure Utp_Validation_Action_Set; -- Sets attribute's value of instance of ValidationAction class. ------------------------- -- Utp_Coding_Rule_Set -- ------------------------- procedure Utp_Coding_Rule_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Base_Namespace_A_Extension_Coding_Rule then -- CodingRule::base_Namespace : Namespace AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Namespace (AMF.UML.Namespaces.UML_Namespace_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Base_Property_A_Extension_Coding_Rule then -- CodingRule::base_Property : Property AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Property (AMF.UML.Properties.UML_Property_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Base_Value_Specification_A_Extension_Coding_Rule then -- CodingRule::base_ValueSpecification : ValueSpecification AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Value_Specification (AMF.UML.Value_Specifications.UML_Value_Specification_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Coding_Rule_Coding then -- CodingRule::coding : String AMF.Utp.Coding_Rules.Utp_Coding_Rule_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Coding (League.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Coding_Rule_Set; ---------------------------- -- Utp_Data_Partition_Set -- ---------------------------- procedure Utp_Data_Partition_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Partition_Base_Classifier_A_Extension_Data_Partition then -- DataPartition::base_Classifier : Classifier AMF.Utp.Data_Partitions.Utp_Data_Partition_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Classifier (AMF.UML.Classifiers.UML_Classifier_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Data_Partition_Set; ----------------------- -- Utp_Data_Pool_Set -- ----------------------- procedure Utp_Data_Pool_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Pool_Base_Classifier_A_Extension_Data_Pool then -- DataPool::base_Classifier : Classifier AMF.Utp.Data_Pools.Utp_Data_Pool_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Classifier (AMF.UML.Classifiers.UML_Classifier_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Pool_Base_Property_A_Extension_Data_Pool then -- DataPool::base_Property : Property AMF.Utp.Data_Pools.Utp_Data_Pool_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Property (AMF.UML.Properties.UML_Property_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Data_Pool_Set; --------------------------- -- Utp_Data_Selector_Set -- --------------------------- procedure Utp_Data_Selector_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Data_Selector_Base_Operation_A_Extension_Data_Selector then -- DataSelector::base_Operation : Operation AMF.Utp.Data_Selectors.Utp_Data_Selector_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Operation (AMF.UML.Operations.UML_Operation_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Data_Selector_Set; --------------------- -- Utp_Default_Set -- --------------------- procedure Utp_Default_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Default_Base_Behavior_A_Extension_Default then -- Default::base_Behavior : Behavior AMF.Utp.Defaults.Utp_Default_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Behavior (AMF.UML.Behaviors.UML_Behavior_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Default_Set; --------------------------------- -- Utp_Default_Application_Set -- --------------------------------- procedure Utp_Default_Application_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Default_Application_Base_Dependency_A_Extension_Default_Application then -- DefaultApplication::base_Dependency : Dependency AMF.Utp.Default_Applications.Utp_Default_Application_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Dependency (AMF.UML.Dependencies.UML_Dependency_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Default_Application_Repetition then -- DefaultApplication::repetition : UnlimitedNatural AMF.Utp.Default_Applications.Utp_Default_Application_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Repetition (AMF.Holders.Unlimited_Naturals.Element (Value)); else raise Program_Error; end if; end Utp_Default_Application_Set; ------------------------ -- Utp_Determ_Alt_Set -- ------------------------ procedure Utp_Determ_Alt_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Determ_Alt_Base_Combined_Fragment_A_Extension_Determ_Alt then -- DetermAlt::base_CombinedFragment : CombinedFragment AMF.Utp.Determ_Alts.Utp_Determ_Alt_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Combined_Fragment (AMF.UML.Combined_Fragments.UML_Combined_Fragment_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Determ_Alt_Set; --------------------------- -- Utp_Finish_Action_Set -- --------------------------- procedure Utp_Finish_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Finish_Action_Base_Invocation_Action_A_Extension_Finish_Action then -- FinishAction::base_InvocationAction : InvocationAction AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Invocation_Action (AMF.UML.Invocation_Actions.UML_Invocation_Action_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Finish_Action_Base_Opaque_Action_A_Extension_Finish_Action then -- FinishAction::base_OpaqueAction : OpaqueAction AMF.Utp.Finish_Actions.Utp_Finish_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Opaque_Action (AMF.UML.Opaque_Actions.UML_Opaque_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Finish_Action_Set; --------------------------------- -- Utp_Get_Timezone_Action_Set -- --------------------------------- procedure Utp_Get_Timezone_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Get_Timezone_Action_Base_Read_Structural_Feature_Action_A_Extension_Get_Timezone_Action then -- GetTimezoneAction::base_ReadStructuralFeatureAction : ReadStructuralFeatureAction AMF.Utp.Get_Timezone_Actions.Utp_Get_Timezone_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Read_Structural_Feature_Action (AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Get_Timezone_Action_Set; ------------------------- -- Utp_Literal_Any_Set -- ------------------------- procedure Utp_Literal_Any_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Literal_Any_Base_Literal_Specification_A_Extension_Literal_Any then -- LiteralAny::base_LiteralSpecification : LiteralSpecification AMF.Utp.Literal_Anies.Utp_Literal_Any_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Literal_Specification (AMF.UML.Literal_Specifications.UML_Literal_Specification_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Literal_Any_Set; --------------------------------- -- Utp_Literal_Any_Or_Null_Set -- --------------------------------- procedure Utp_Literal_Any_Or_Null_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Literal_Any_Or_Null_Base_Literal_Specification_A_Extension_Literal_Any_Or_Null then -- LiteralAnyOrNull::base_LiteralSpecification : LiteralSpecification AMF.Utp.Literal_Any_Or_Nulls.Utp_Literal_Any_Or_Null_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Literal_Specification (AMF.UML.Literal_Specifications.UML_Literal_Specification_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Literal_Any_Or_Null_Set; ------------------------ -- Utp_Log_Action_Set -- ------------------------ procedure Utp_Log_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Log_Action_Base_Send_Object_Action_A_Extension_Log_Action then -- LogAction::base_SendObjectAction : SendObjectAction AMF.Utp.Log_Actions.Utp_Log_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Send_Object_Action (AMF.UML.Send_Object_Actions.UML_Send_Object_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Log_Action_Set; ----------------------------- -- Utp_Managed_Element_Set -- ----------------------------- procedure Utp_Managed_Element_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Base_Element_A_Extension_Managed_Element then -- ManagedElement::base_Element : Element AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Element (AMF.UML.Elements.UML_Element_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Criticality then -- ManagedElement::criticality : String AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Criticality (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Description then -- ManagedElement::description : String AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Description (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Owner then -- ManagedElement::owner : String AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Owner (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Managed_Element_Version then -- ManagedElement::version : String AMF.Utp.Managed_Elements.Utp_Managed_Element_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Version (AMF.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Managed_Element_Set; ------------------------------- -- Utp_Read_Timer_Action_Set -- ------------------------------- procedure Utp_Read_Timer_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Read_Timer_Action_Base_Call_Operation_Action_A_Extension_Read_Timer_Action then -- ReadTimerAction::base_CallOperationAction : CallOperationAction AMF.Utp.Read_Timer_Actions.Utp_Read_Timer_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Call_Operation_Action (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Read_Timer_Action_Set; ----------------- -- Utp_SUT_Set -- ----------------- procedure Utp_SUT_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_SUT_Base_Property_A_Extension_SUT then -- SUT::base_Property : Property AMF.Utp.SUTs.Utp_SUT_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Property (AMF.UML.Properties.UML_Property_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_SUT_Set; --------------------------------- -- Utp_Set_Timezone_Action_Set -- --------------------------------- procedure Utp_Set_Timezone_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Set_Timezone_Action_Base_Write_Structural_Feature_Action_A_Extension_Set_Timezone_Action then -- SetTimezoneAction::base_WriteStructuralFeatureAction : WriteStructuralFeatureAction AMF.Utp.Set_Timezone_Actions.Utp_Set_Timezone_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Write_Structural_Feature_Action (AMF.UML.Write_Structural_Feature_Actions.UML_Write_Structural_Feature_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Set_Timezone_Action_Set; -------------------------------- -- Utp_Start_Timer_Action_Set -- -------------------------------- procedure Utp_Start_Timer_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Start_Timer_Action_Base_Call_Operation_Action_A_Extension_Start_Timer_Action then -- StartTimerAction::base_CallOperationAction : CallOperationAction AMF.Utp.Start_Timer_Actions.Utp_Start_Timer_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Call_Operation_Action (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Start_Timer_Action_Set; ------------------------------- -- Utp_Stop_Timer_Action_Set -- ------------------------------- procedure Utp_Stop_Timer_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Stop_Timer_Action_Base_Call_Operation_Action_A_Extension_Stop_Timer_Action then -- StopTimerAction::base_CallOperationAction : CallOperationAction AMF.Utp.Stop_Timer_Actions.Utp_Stop_Timer_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Call_Operation_Action (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Stop_Timer_Action_Set; ----------------------- -- Utp_Test_Case_Set -- ----------------------- procedure Utp_Test_Case_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Base_Behavior_A_Extension_Test_Case then -- TestCase::base_Behavior : Behavior AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Behavior (AMF.UML.Behaviors.UML_Behavior_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Base_Operation_A_Extension_Test_Case then -- TestCase::base_Operation : Operation AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Operation (AMF.UML.Operations.UML_Operation_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Case_Priority then -- TestCase::priority : String AMF.Utp.Test_Cases.Utp_Test_Case_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Priority (AMF.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Test_Case_Set; ---------------------------- -- Utp_Test_Component_Set -- ---------------------------- procedure Utp_Test_Component_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Component_Base_Structured_Classifier_A_Extension_Test_Component then -- TestComponent::base_StructuredClassifier : StructuredClassifier AMF.Utp.Test_Components.Utp_Test_Component_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Structured_Classifier (AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Test_Component_Set; -------------------------- -- Utp_Test_Context_Set -- -------------------------- procedure Utp_Test_Context_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Base_Behaviored_Classifier_A_Extension_Test_Context then -- TestContext::base_BehavioredClassifier : BehavioredClassifier AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Behaviored_Classifier (AMF.UML.Behaviored_Classifiers.UML_Behaviored_Classifier_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Base_Structured_Classifier_A_Extension_Test_Context then -- TestContext::base_StructuredClassifier : StructuredClassifier AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Structured_Classifier (AMF.UML.Structured_Classifiers.UML_Structured_Classifier_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Context_Test_Level then -- TestContext::testLevel : String AMF.Utp.Test_Contexts.Utp_Test_Context_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Test_Level (AMF.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Test_Context_Set; ---------------------- -- Utp_Test_Log_Set -- ---------------------- procedure Utp_Test_Log_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Base_Behavior_A_Extension_Test_Log then -- TestLog::base_Behavior : Behavior AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Behavior (AMF.UML.Behaviors.UML_Behavior_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Duration then -- TestLog::duration : String AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Duration (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Executed_At then -- TestLog::executedAt : String AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Executed_At (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Sut_Version then -- TestLog::sutVersion : String AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Sut_Version (AMF.Holders.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Verdict then -- TestLog::verdict : Verdict AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Verdict (AMF.Utp.Holders.Verdicts.Element (Value)); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Verdict_Reason then -- TestLog::verdictReason : String AMF.Utp.Test_Logs.Utp_Test_Log_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Verdict_Reason (AMF.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Test_Log_Set; ---------------------------------- -- Utp_Test_Log_Application_Set -- ---------------------------------- procedure Utp_Test_Log_Application_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Log_Application_Base_Dependency_A_Extension_Test_Log_Application then -- TestLogApplication::base_Dependency : Dependency AMF.Utp.Test_Log_Applications.Utp_Test_Log_Application_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Dependency (AMF.UML.Dependencies.UML_Dependency_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Test_Log_Application_Set; ---------------------------- -- Utp_Test_Objective_Set -- ---------------------------- procedure Utp_Test_Objective_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Objective_Base_Dependency_A_Extension_Test_Objective then -- TestObjective::base_Dependency : Dependency AMF.Utp.Test_Objectives.Utp_Test_Objective_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Dependency (AMF.UML.Dependencies.UML_Dependency_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Objective_Priority then -- TestObjective::priority : String AMF.Utp.Test_Objectives.Utp_Test_Objective_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Priority (AMF.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Test_Objective_Set; ------------------------ -- Utp_Test_Suite_Set -- ------------------------ procedure Utp_Test_Suite_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Suite_Base_Behavior_A_Extension_Test_Suite then -- TestSuite::base_Behavior : Behavior AMF.Utp.Test_Suites.Utp_Test_Suite_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Behavior (AMF.UML.Behaviors.UML_Behavior_Access (AMF.Holders.Elements.Element (Value))); elsif Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Test_Suite_Priority then -- TestSuite::priority : String AMF.Utp.Test_Suites.Utp_Test_Suite_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Priority (AMF.Holders.Element (Value)); else raise Program_Error; end if; end Utp_Test_Suite_Set; ---------------------- -- Utp_Time_Out_Set -- ---------------------- procedure Utp_Time_Out_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Time_Out_Base_Time_Event_A_Extension_Time_Out then -- TimeOut::base_TimeEvent : TimeEvent AMF.Utp.Time_Outs.Utp_Time_Out_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Time_Event (AMF.UML.Time_Events.UML_Time_Event_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Time_Out_Set; ----------------------------- -- Utp_Time_Out_Action_Set -- ----------------------------- procedure Utp_Time_Out_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Time_Out_Action_Base_Accept_Event_Action_A_Extension_Time_Out_Action then -- TimeOutAction::base_AcceptEventAction : AcceptEventAction AMF.Utp.Time_Out_Actions.Utp_Time_Out_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Accept_Event_Action (AMF.UML.Accept_Event_Actions.UML_Accept_Event_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Time_Out_Action_Set; ------------------------------ -- Utp_Time_Out_Message_Set -- ------------------------------ procedure Utp_Time_Out_Message_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Time_Out_Message_Base_Message_A_Extension_Time_Out_Message then -- TimeOutMessage::base_Message : Message AMF.Utp.Time_Out_Messages.Utp_Time_Out_Message_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Message (AMF.UML.Messages.UML_Message_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Time_Out_Message_Set; ---------------------------------- -- Utp_Timer_Running_Action_Set -- ---------------------------------- procedure Utp_Timer_Running_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Timer_Running_Action_Base_Read_Structural_Feature_Action_A_Extension_Timer_Running_Action then -- TimerRunningAction::base_ReadStructuralFeatureAction : ReadStructuralFeatureAction AMF.Utp.Timer_Running_Actions.Utp_Timer_Running_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Read_Structural_Feature_Action (AMF.UML.Read_Structural_Feature_Actions.UML_Read_Structural_Feature_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Timer_Running_Action_Set; ------------------------------- -- Utp_Validation_Action_Set -- ------------------------------- procedure Utp_Validation_Action_Set is begin if Property = AMF.Internals.Tables.Utp_Metamodel.MP_Utp_Validation_Action_Base_Call_Operation_Action_A_Extension_Validation_Action then -- ValidationAction::base_CallOperationAction : CallOperationAction AMF.Utp.Validation_Actions.Utp_Validation_Action_Access (AMF.Internals.Helpers.To_Element (Self)).Set_Base_Call_Operation_Action (AMF.UML.Call_Operation_Actions.UML_Call_Operation_Action_Access (AMF.Holders.Elements.Element (Value))); else raise Program_Error; end if; end Utp_Validation_Action_Set; begin case UTP_Element_Table.Table (Self).Kind is when AMF.Internals.Tables.UTP_Types.E_None => raise Program_Error; when AMF.Internals.Tables.UTP_Types.E_Utp_Coding_Rule => Utp_Coding_Rule_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Partition => Utp_Data_Partition_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Pool => Utp_Data_Pool_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Data_Selector => Utp_Data_Selector_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Default => Utp_Default_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Default_Application => Utp_Default_Application_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Determ_Alt => Utp_Determ_Alt_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Finish_Action => Utp_Finish_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Get_Timezone_Action => Utp_Get_Timezone_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Literal_Any => Utp_Literal_Any_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Literal_Any_Or_Null => Utp_Literal_Any_Or_Null_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Log_Action => Utp_Log_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Managed_Element => Utp_Managed_Element_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Read_Timer_Action => Utp_Read_Timer_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_SUT => Utp_SUT_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Set_Timezone_Action => Utp_Set_Timezone_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Start_Timer_Action => Utp_Start_Timer_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Stop_Timer_Action => Utp_Stop_Timer_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Case => Utp_Test_Case_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Component => Utp_Test_Component_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Context => Utp_Test_Context_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Log => Utp_Test_Log_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Log_Application => Utp_Test_Log_Application_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Objective => Utp_Test_Objective_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Test_Suite => Utp_Test_Suite_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out => Utp_Time_Out_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out_Action => Utp_Time_Out_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Time_Out_Message => Utp_Time_Out_Message_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Timer_Running_Action => Utp_Timer_Running_Action_Set; when AMF.Internals.Tables.UTP_Types.E_Utp_Validation_Action => Utp_Validation_Action_Set; end case; end Set; end AMF.Internals.Tables.UTP_Reflection;
tests/nonsmoke/functional/CompileTests/experimental_ada_tests/tests/procedure_instantiation2.adb
ouankou/rose
488
11775
PROCEDURE Procedure_Instantiation2 IS PACKAGE PKG IS GENERIC PROCEDURE P20 ; -- OK. END PKG; PACKAGE BODY PKG IS PROCEDURE P20 IS BEGIN null; END P20; END PKG; PACKAGE INSTANCES IS PROCEDURE NP20 IS NEW PKG.P20; END INSTANCES; BEGIN null; END Procedure_Instantiation2;
Transynther/x86/_processed/AVXALIGN/_zr_/i3-7100_9_0xca_notsx.log_68_1874.asm
ljhsiun2/medusa
9
167915
.global s_prepare_buffers s_prepare_buffers: push %r12 push %r14 push %r8 push %r9 push %rbp push %rcx push %rdi push %rsi lea addresses_UC_ht+0xeb3d, %r12 nop and $11973, %rdi movb $0x61, (%r12) nop dec %rbp lea addresses_WC_ht+0x1901f, %rsi lea addresses_normal_ht+0x18dab, %rdi nop nop add $64510, %r14 mov $99, %rcx rep movsw nop nop nop nop nop and $46657, %r14 lea addresses_WT_ht+0x121dd, %rsi lea addresses_normal_ht+0x51dd, %rdi nop cmp %r8, %r8 mov $22, %rcx rep movsb sub %r12, %r12 lea addresses_UC_ht+0x105dd, %rsi lea addresses_normal_ht+0x14cad, %rdi clflush (%rdi) and $27142, %r9 mov $86, %rcx rep movsb nop sub $11762, %r9 lea addresses_WC_ht+0x7e5d, %rsi lea addresses_WT_ht+0x15711, %rdi nop nop nop nop add $56714, %r9 mov $78, %rcx rep movsq nop nop nop nop nop add %r14, %r14 lea addresses_A_ht+0x36cd, %r8 nop nop xor %r12, %r12 movl $0x61626364, (%r8) nop nop nop nop add %rsi, %rsi lea addresses_normal_ht+0x1a5d, %r14 nop nop nop nop nop sub $46464, %r9 mov $0x6162636465666768, %rdi movq %rdi, (%r14) nop nop nop nop cmp %rbp, %rbp lea addresses_WT_ht+0x1a5dd, %rcx nop add $49513, %r14 mov (%rcx), %r8d nop nop cmp %rsi, %rsi lea addresses_WT_ht+0xddd, %r8 nop nop nop nop and %r9, %r9 movups (%r8), %xmm7 vpextrq $1, %xmm7, %r14 nop add %rsi, %rsi lea addresses_WT_ht+0x1608d, %r12 nop nop inc %rsi mov $0x6162636465666768, %r8 movq %r8, %xmm0 and $0xffffffffffffffc0, %r12 vmovntdq %ymm0, (%r12) cmp $48920, %r8 lea addresses_D_ht+0xddd, %rdi nop add $33449, %rcx mov $0x6162636465666768, %r14 movq %r14, %xmm4 movups %xmm4, (%rdi) nop nop nop nop and %rcx, %rcx pop %rsi pop %rdi pop %rcx pop %rbp pop %r9 pop %r8 pop %r14 pop %r12 ret .global s_faulty_load s_faulty_load: push %r10 push %r14 push %r15 push %r8 push %rax push %rcx push %rdi // Faulty Load lea addresses_US+0x155dd, %rax nop nop nop nop nop inc %r8 movb (%rax), %r15b lea oracles, %r10 and $0xff, %r15 shlq $12, %r15 mov (%r10,%r15,1), %r15 pop %rdi pop %rcx pop %rax pop %r8 pop %r15 pop %r14 pop %r10 ret /* <gen_faulty_load> [REF] {'src': {'same': False, 'congruent': 0, 'NT': False, 'type': 'addresses_US', 'size': 2, 'AVXalign': False}, 'OP': 'LOAD'} [Faulty Load] {'src': {'same': True, 'congruent': 0, 'NT': True, 'type': 'addresses_US', 'size': 1, 'AVXalign': False}, 'OP': 'LOAD'} <gen_prepare_buffer> {'OP': 'STOR', 'dst': {'same': True, 'congruent': 5, 'NT': False, 'type': 'addresses_UC_ht', 'size': 1, 'AVXalign': False}} {'src': {'type': 'addresses_WC_ht', 'congruent': 0, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 0, 'same': False}} {'src': {'type': 'addresses_WT_ht', 'congruent': 5, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 9, 'same': False}} {'src': {'type': 'addresses_UC_ht', 'congruent': 10, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_normal_ht', 'congruent': 4, 'same': False}} {'src': {'type': 'addresses_WC_ht', 'congruent': 7, 'same': False}, 'OP': 'REPM', 'dst': {'type': 'addresses_WT_ht', 'congruent': 2, 'same': False}} {'OP': 'STOR', 'dst': {'same': False, 'congruent': 4, 'NT': False, 'type': 'addresses_A_ht', 'size': 4, 'AVXalign': False}} {'OP': 'STOR', 'dst': {'same': False, 'congruent': 7, 'NT': False, 'type': 'addresses_normal_ht', 'size': 8, 'AVXalign': False}} {'src': {'same': False, 'congruent': 11, 'NT': False, 'type': 'addresses_WT_ht', 'size': 4, 'AVXalign': False}, 'OP': 'LOAD'} {'src': {'same': False, 'congruent': 10, 'NT': False, 'type': 'addresses_WT_ht', 'size': 16, 'AVXalign': False}, 'OP': 'LOAD'} {'OP': 'STOR', 'dst': {'same': False, 'congruent': 2, 'NT': True, 'type': 'addresses_WT_ht', 'size': 32, 'AVXalign': False}} {'OP': 'STOR', 'dst': {'same': False, 'congruent': 10, 'NT': False, 'type': 'addresses_D_ht', 'size': 16, 'AVXalign': False}} {'00': 68} 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 00 */
DockerSdk/Images/Parser/ImageReferences.g4
tsonto/DockerSdk
2
532
grammar ImageReferences; referenceOnly: reference EOF; reference: id | name; id: shortId | mediumId | longId; shortId: bytex6; mediumId: bytex32; longId: 'sha256' COLON mediumId; name: repository (COLON tag)? (AT digest)? ; digest: 'sha256' COLON bytex32 ; tag: alphanum ((alphanum | UNDER | DOT | DASH)* alphanum)? ; repository: (firstComponent SLASH)? normalComponent (SLASH normalComponent)* ; firstComponent: normalComponent | hostComponent; // even if the parser says that it can be considered a normal component, post-parsing might consider it to be a host component hostComponent: hostname (COLON port)? ; hostname: label (DOT label)* ; label: alphanum (alphanum | DASH)* ; port: DIGIT+; normalComponent: lowAlphanum+ (normalComponentSep lowAlphanum+)* ; normalComponentSep: DOT | UNDER UNDER | UNDER | DASH+; bytex6: bytex1 bytex1 bytex1 bytex1 bytex1 bytex1; bytex8: bytex1 bytex1 bytex1 bytex1 bytex1 bytex1 bytex1 bytex1; bytex32: bytex8 bytex8 bytex8 bytex8; bytex1: hexChar hexChar; hexChar: HEXLOWLETTER | DIGIT; lowLetter: HEXLOWLETTER | NONHEXLOWLETTER; letter: lowLetter | UPALPHA; lowAlphanum: lowLetter | DIGIT; alphanum: letter | DIGIT; HEXLOWLETTER: [a-f]; NONHEXLOWLETTER: [g-z]; UPALPHA: [A-Z]; DIGIT: [0-9]; AT: '@'; COLON: ':'; DOT: '.'; SLASH: '/'; UNDER: '_'; DASH: '-';
programs/oeis/029/A029578.asm
neoneye/loda
22
6351
; A029578: The natural numbers interleaved with the even numbers. ; 0,0,1,2,2,4,3,6,4,8,5,10,6,12,7,14,8,16,9,18,10,20,11,22,12,24,13,26,14,28,15,30,16,32,17,34,18,36,19,38,20,40,21,42,22,44,23,46,24,48,25,50,26,52,27,54,28,56,29,58,30,60,31,62,32,64,33,66,34,68,35,70,36,72,37,74,38,76,39,78,40,80,41,82,42,84,43,86,44,88,45,90,46,92,47,94,48,96,49,98 sub $0,2 dif $0,2 add $0,1
3-mid/impact/source/2d/orbs/dynamics/impact-d2-orbs-world_callbacks.adb
charlie5/lace
20
14892
<reponame>charlie5/lace<gh_stars>10-100 package body impact.d2.orbs.world_Callbacks is procedure dummy is begin null; end dummy; -- Return true if contact calculations should be performed between these two shapes. -- If you implement your own collision filter you may want to build from this implementation. -- function ShouldCollide (Self : access b2ContactFilter; fixtureA, fixtureB : access Fixture.item'Class) return Boolean is pragma Unreferenced (Self); use type int16, uint16; filterA : Fixture.Filter renames fixtureA.GetFilterData; filterB : Fixture.Filter renames fixtureB.GetFilterData; collide : Boolean; begin if filterA.groupIndex = filterB.groupIndex and then filterA.groupIndex /= 0 then return filterA.groupIndex > 0; end if; collide := (filterA.maskBits and filterB.categoryBits) /= 0 and then (filterA.categoryBits and filterB.maskBits ) /= 0; return collide; end ShouldCollide; -- b2DebugDraw::b2DebugDraw() -- { -- m_drawFlags = 0; -- } -- -- void b2DebugDraw::SetFlags(uint32 flags) -- { -- m_drawFlags = flags; -- } -- -- uint32 b2DebugDraw::GetFlags() const -- { -- return m_drawFlags; -- } -- -- void b2DebugDraw::AppendFlags(uint32 flags) -- { -- m_drawFlags |= flags; -- } -- -- void b2DebugDraw::ClearFlags(uint32 flags) -- { -- m_drawFlags &= ~flags; -- } end impact.d2.orbs.world_Callbacks;
alloy4fun_models/trashltl/models/13/SNq8qgcimnjLzfkEk.als
Kaixi26/org.alloytools.alloy
0
1586
<gh_stars>0 open main pred idSNq8qgcimnjLzfkEk_prop14 { always (some (Protected & Trash) implies ((Protected & Trash) not in Protected')) } pred __repair { idSNq8qgcimnjLzfkEk_prop14 } check __repair { idSNq8qgcimnjLzfkEk_prop14 <=> prop14o }
cc4x86/tests/regressive/asm_listings/while_break__optimize_noregalloc.asm
artyompal/C-compiler
4
83551
<gh_stars>1-10 .686 .model flat .xmm .code _test proc create_stack_frame mov dword29,0 label0000: cmp dword29,10 jge label0001 cmp dword29,5 jne label0002 jmp label0001 label0002: inc dword29 jmp label0000 label0001: cmp dword29,5 je label0003 mov dword10,1 set_retval dword10 destroy_stack_frame ret label0003: mov dword30,0 mov dword31,0 label0004: cmp dword30,50 jne label0007 mov dword19,dword30 add dword19,50 mov dword30,dword19 jmp label0005 label0007: inc dword30 inc dword31 label0005: cmp dword30,100 jl label0004 cmp dword31,50 je label0008 mov dword26,1 set_retval dword26 destroy_stack_frame ret label0008: mov dword27,0 set_retval dword27 destroy_stack_frame ret _test endp end
programs/oeis/087/A087076.asm
jmorken/loda
1
87564
<gh_stars>1-10 ; A087076: Sums of the squares of the elements in the subsets of the integers 1 to n. ; 0,1,10,56,240,880,2912,8960,26112,72960,197120,518144,1331200,3354624,8314880,20316160,49020928,116981760,276430848,647495680,1504706560,3471835136,7958691840,18136170496,41104179200,92694118400,208071032832,465064427520,1035355553792,2296465326080,5076114472960,11184094838784,24567212933120,53811645251584,117553254891520,256151849533440,556833919991808,1207744803635200,2613951456083968,5645992208629760 mov $2,$0 lpb $2 lpb $0 add $3,$0 sub $0,1 add $4,$3 lpe mov $1,$4 sub $2,1 mul $4,2 lpe
programs/oeis/245/A245761.asm
neoneye/loda
22
247197
; A245761: Numbers with a maximal multiplicative persistence of 1 in any base. ; 0,1,2,3,4,5,6,7,9,12 mov $1,2 lpb $0 add $1,$0 mov $2,22 sub $2,$0 div $2,2 trn $0,$2 lpe sub $1,2 mov $0,$1
Task/Sieve-of-Eratosthenes/Agda/sieve-of-eratosthenes.agda
LaudateCorpus1/RosettaCodeData
1
11257
-- imports open import Data.Nat as ℕ using (ℕ; suc; zero; _+_; _∸_) open import Data.Vec as Vec using (Vec; _∷_; []; tabulate; foldr) open import Data.Fin as Fin using (Fin; suc; zero) open import Function using (_∘_; const; id) open import Data.List as List using (List; _∷_; []) open import Data.Maybe using (Maybe; just; nothing) -- Without square cutoff optimization module Simple where primes : ∀ n → List (Fin n) primes zero = [] primes (suc zero) = [] primes (suc (suc zero)) = [] primes (suc (suc (suc m))) = sieve (tabulate (just ∘ suc)) where sieve : ∀ {n} → Vec (Maybe (Fin (2 + m))) n → List (Fin (3 + m)) sieve [] = [] sieve (nothing ∷ xs) = sieve xs sieve (just x ∷ xs) = suc x ∷ sieve (foldr B remove (const []) xs x) where B = λ n → ∀ {i} → Fin i → Vec (Maybe (Fin (2 + m))) n remove : ∀ {n} → Maybe (Fin (2 + m)) → B n → B (suc n) remove _ ys zero = nothing ∷ ys x remove y ys (suc z) = y ∷ ys z -- With square cutoff optimization module SquareOpt where primes : ∀ n → List (Fin n) primes zero = [] primes (suc zero) = [] primes (suc (suc zero)) = [] primes (suc (suc (suc m))) = sieve 1 m (Vec.tabulate (just ∘ Fin.suc ∘ Fin.suc)) where sieve : ∀ {n} → ℕ → ℕ → Vec (Maybe (Fin (3 + m))) n → List (Fin (3 + m)) sieve _ zero = List.mapMaybe id ∘ Vec.toList sieve _ (suc _) [] = [] sieve i (suc l) (nothing ∷ xs) = sieve (suc i) (l ∸ i ∸ i) xs sieve i (suc l) (just x ∷ xs) = x ∷ sieve (suc i) (l ∸ i ∸ i) (Vec.foldr B remove (const []) xs i) where B = λ n → ℕ → Vec (Maybe (Fin (3 + m))) n remove : ∀ {i} → Maybe (Fin (3 + m)) → B i → B (suc i) remove _ ys zero = nothing ∷ ys i remove y ys (suc j) = y ∷ ys j
source/obj/notb.ads
ytomino/drake
33
11377
<gh_stars>10-100 pragma License (Unrestricted); -- optional runtime unit with System.Unwind; package notb is pragma Preelaborate; Exception_Tracebacks : Integer with Export, Convention => C, External_Name => "__gl_exception_tracebacks"; procedure Call_Chain ( Current : in out System.Unwind.Exception_Occurrence) is null with Export, -- for weak linking Convention => Ada, External_Name => "ada__exceptions__call_chain"; procedure Backtrace_Information ( X : System.Unwind.Exception_Occurrence; Params : System.Address; Put : not null access procedure (S : String; Params : System.Address); New_Line : not null access procedure (Params : System.Address)) is null with Export, -- for weak linking Convention => Ada, External_Name => "__drake_backtrace_information"; end notb;
programs/oeis/187/A187342.asm
jmorken/loda
1
5888
<reponame>jmorken/loda<gh_stars>1-10 ; A187342: Floor(((15+sqrt(5))/11)n); complement of A187341. ; 1,3,4,6,7,9,10,12,14,15,17,18,20,21,23,25,26,28,29,31,32,34,36,37,39,40,42,43,45,47,48,50,51,53,54,56,57,59,61,62,64,65,67,68,70,72,73,75,76,78,79,81,83,84,86,87,89,90,92,94,95,97,98,100,101,103,104,106,108,109,111,112,114,115,117,119,120,122,123,125 mov $2,2 mov $5,1 mov $7,$0 add $7,1 lpb $2 mov $1,$5 add $2,2 mov $4,$2 lpb $4 add $1,19 sub $4,$2 mul $7,94 lpe lpb $1 add $5,$1 sub $1,$2 mov $3,$5 sub $3,1 lpe add $1,$5 add $5,$3 mov $6,$5 div $7,$3 lpb $6 add $6,$7 mul $1,$6 mov $6,1 lpe mov $2,1 lpe sub $1,7442 div $1,61 add $1,1